Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Laravel 5 routing using prefix

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.

like image 962
asolenzal Avatar asked Oct 30 '22 12:10

asolenzal


1 Answers

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.

like image 141
marcanuy Avatar answered Nov 09 '22 14:11

marcanuy