Issue
I have a lot of URLs in my package routes, but one of them does not seem to work.
When the route is as follows:
Route::get('package_name', 'DashboardController@dashboard');
It does not work, but when it's something as below:
Route::get('something', 'DashboardController@dashboard');
Then it works with no problem.
Solution
The reason why I had this problem because I was publishing a folder into the public directory with the same name as the package name.
Answered By - Agil
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.