justijndepover/laravel-localized-routes
Composer 安装命令:
composer require justijndepover/laravel-localized-routes
包简介
Setup your Laravel application with localized routes
README 文档
README
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.
justijndepover/laravel-localized-routes 适用场景与选型建议
justijndepover/laravel-localized-routes 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.11k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2021 年 03 月 26 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 justijndepover/laravel-localized-routes 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 justijndepover/laravel-localized-routes 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1.11k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 11
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-03-26