Image is Forbidden.
Apart from that, it looks like your route is missing required route.
Open "route.php" file and set up route like :-
Route::get('/', 'HomeController@showWelcome');
You can create your own route, with simple 1 line :-
Route::get('/checkme', 'HomeController@checkme');
and than in "Contorller/HomeController" file , create a new method with name "checkme" and do your rest of laravel coding.
Good Luck
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community