I just installed the new laravel 5.1, only the root page shows that
Route::get('/', function () {
return view('welcome');
});
It works fine, but not every other route does not work like:
Route::get('user', function () {
return "hello";
});
It throws an exception 404 not found. Please help me get out of here. Thanks in advance.
source
share