route
Basic route example returning a view. Routes are located in the /routes folder of your application.
Route::get('/', function(){
return view('dashboard');
});
copy
Basic route example returning a view. Routes are located in the /routes folder of your application.
Route::get('/', function(){
return view('dashboard');
});
copy