dartmoon/laravel-route-helpers
最新稳定版本:v1.0.0
Composer 安装命令:
composer require dartmoon/laravel-route-helpers
包简介
Set of helper for the Route facade
README 文档
README
Add a simple Route::when macro to conditionally register routes.
Installation
composer require dartmoon/laravel-route-helpers
Usage
When the condition is true the route will be registered, otherwise it will be ignored.
Route::when($condition, function () { Route::get('/registered/only/when/condition/is/true', fn () => 'Hello World'); });
For example you can register routes base on app locale.
Route::when(app()->getLocale() == 'en', function () { Route::get('about', fn () => 'English'); }); Route::when(app()->getLocale() == 'it', function () { Route::get('about', fn () => 'Italiano'); });
License
This project is licensed under the MIT License - see the LICENSE.md file for details
统计信息
- 总下载量: 1.57k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-05-16