use AppHttpControllersPagesController;
// Create route for About Page
Route::get('about-us', [PagesController::class, 'aboutPage'])->name('pages.about');
Route::get(
'/user/profile',
[UserProfileController::class, 'show']
)->name('profile');
Route::get(‘/route’,function(){
Return “Something”;
})
Route::match(['get', 'post'], '/', function () {
//
});
Route::get('/', function () {
return view('welcome');
});