marciojc / language-routes by marciojc

A Laravel Package to support routes for different languages
21
1
2
Package Data
Maintainer Username: marciojc
Maintainer Contact: marciojc@gmail.com (Márcio Coelho)
Package Create Date: 2017-04-29
Package Last Update: 2017-05-04
Language: PHP
License: MIT
Last Refreshed: 2024-04-14 15:05:07
Package Statistics
Total Downloads: 21
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

Language Routes

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
    // ...
],