dartmoon/laravel-route-helpers 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-05-16