Hi I'm building a Laravel 5 project that is to be deployed in a subfolder on a server inside a wordpress application(I don't know why but clients are clients), then I need to prefix all the routes from the application with a prefix like "/es", now the issue is with Auth related routes. In my routes definitions I have the following line:
Route::controllers([
'auth' => 'Auth\AuthController',
'password' => 'Auth\PasswordController',
]);
And my question is, is there any way to prefix this routes without having to put all route definitions for the auth controller extracted from the trait that handles them?
Thanks in advance.
You can use a Route Prefix: http://laravel.com/docs/5.1/routing#route-group-prefixes
The prefix group array attribute may be used to prefix each route in the group with a given URI.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With