marciojc / language-routes
A Laravel Package to support routes for different languages
0.0.3
2017-05-04 14:18 UTC
Requires
- illuminate/support: 5.4.*
Requires (Dev)
- laravel/framework: ^5.4
- phpunit/phpunit: ^6.1
This package is not auto-updated.
Last update: 2024-11-24 03:40:22 UTC
README
Website & Documentation: https://github.com/marciojc/language-routes
After creating your new Laravel application you can include the LanguageRoutes package with the following command:
composer require marciojc/language-routes
Add the LanguageRoutes service provider to the config/app.php
file in the providers
array:
'providers' => [ // Laravel Framework Service Providers... //... // Package Service Providers marciojc\LanguageRoutes\LanguageRoutesServiceProvider::class, // ... // Application Service Providers // ... ],