5

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.

Marcin Nabiałek
  • 109,655
  • 42
  • 258
  • 291
asolenzal
  • 500
  • 7
  • 23
  • Have you seen this? http://laravel.com/docs/5.1/routing#route-group-prefixes – marcanuy Dec 19 '15 at 18:30
  • Yes, I have created a Route::group that contains the definition of the Auth and Password controllers, but no luck with that. – asolenzal Dec 19 '15 at 18:37
  • 1
    Sorry, your comment made a solution for, I have already tested it but the prefix had a typo, then there was no way to make it work. Please turn this coment into an answer to mark it correct. – asolenzal Dec 19 '15 at 18:47

2 Answers2

2

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.

marcanuy
  • 23,118
  • 9
  • 64
  • 113
0

You should probably for this route simply change auth and password to have prefix:

Route::controllers([
    'es/auth' => 'Auth\AuthController',
    'es/password' => 'Auth\PasswordController',
]);

If it doesn't help please provide detailed description what exactly doesn't work

Marcin Nabiałek
  • 109,655
  • 42
  • 258
  • 291