Hello I'm new here and I've been trying to learn Laravel but have fallenat the first hurdle. I have searched for the answer and tried several suggestions but nothing worked for me. I am running Wamp and have installed Laravel with composer. I have my routes.php file
Route::get('/', 'WelcomeController@index');
Route::get('/home', 'HomeController@home');
Route::get('about', 'pagesController@about');
Route::controllers([
'auth' => 'Auth\AuthController',
'password' => 'Auth\PasswordController',
]);
The welcome controller works fine it's the other two I just get a 404 not found error. Thanks for any help.