I can't access my Laravel pages through web browser
I'm trying to use Laravel to route information from my mySQL server to an android application. The problem is I can't seem to get to the pages in my routes file.
Routes file is in dir/app/Http/routes.php
one of the lines in the Routes file is:
Route::get('welcome', function () {
return 'PUSKLES';
//odd text just for giggles
});
I've tried going to bacogcorp.com/welcome and bacogcorp.com/dir/welcome but I keep getting 404 errors.
Routes file is in dir/app/Http/routes.php
one of the lines in the Routes file is:
Route::get('welcome', function () {
return 'PUSKLES';
//odd text just for giggles
});
I've tried going to bacogcorp.com/welcome and bacogcorp.com/dir/welcome but I keep getting 404 errors.