承接 justijndepover/laravel-localized-routes 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

justijndepover/laravel-localized-routes

最新稳定版本:0.6.0

Composer 安装命令:

composer require justijndepover/laravel-localized-routes

包简介

Setup your Laravel application with localized routes

README 文档

README

Latest Version on Packagist Software License Total Downloads

Setup your Laravel application with localized routes

Caution

This application is still in development and could implement breaking changes. Please use at your own risk.

Installation

You can install the package with composer

composer require justijndepover/laravel-localized-routes

After installation you should publish your configuration file

php artisan vendor:publish --tag="laravel-localized-routes-config"

configuration

This is the config file

return [

    /**
     * This global setting can enable / disable the entire localization package.
     */
    'enable_localized_routes' => true,

    /**
     * This list contains all the available locales.
     * Simply add your own locale and thats it!
     */
    'locales' => [
        'en' => 'English',
        'nl' => 'Nederlands',
    ],

    /**
     * Automatically detect locales
     *
     * With this setting enabled, you can automatically detect locales.
     * The middleware to do so will check the request for a "locale" header
     *
     * useful for api's, where you don't want the locale prefix,
     * but still want to set the application locale
     */
    'auto_detect_locales' => true,

    /**
     * Automatically redirect requests if the localized version exists
     *
     * With this setting enabled, your requests will automatically redirect
     * to their localized counterpart.
     *
     * For example: /home => /en/home
     */
    'auto_redirect_to_localized_route' => true,

];

Usage

To make your routes multi lingual add this in your web.php:

Route::localized(function () {
    // Every route in here is localized
});

and thats it! You can still give your routes a name like you're used to:

Route::localized(function () {
    Route::get('home', HomeController::class)->name('home');
});
<!-- in your blade view -->
<a href="{{ route('home') }}">Home</a>
<!-- will return /{locale}/home -->

If you want to switch to a different localized route, you can do so with the switchLanguage function.

switchLanguage('fr'); // will return the current route, but the localized part is substituted with the new language

Related repositories

This package is a simplified version of: codezero-be/laravel-localized-routes

If you want a more robust solution with more options, check out their version.

Security

If you find any security related issues, please open an issue or contact me directly at justijndepover@gmail.com.

Contribution

If you wish to make any changes or improvements to the package, feel free to make a pull request.

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 1.1k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2021-03-26

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固