I have moved the AuthController from Auth to my new directory Frontend. Here is the route
Route::controller('auth', 'AuthController');
Then I got the erorr : Controllers\AuthController does not exist.
If I used : Route::controller('auth', 'Frontend\AuthController');
, it is work fine.
So, I want to know how to map all my classes in my custom directories to be loaded form Controllers directory.
Thanks,
Hm did you change class name as well? Maybe post you Controller in here.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community