with closure
Route::get('/home', function () {
$pageTitle = "Home";
return view('/home', compact('pageTitle'));
});Route::get('/profile/detail/{id}', function ($id) {
echo $id;
});Last updated
Route::get('/home', function () {
$pageTitle = "Home";
return view('/home', compact('pageTitle'));
});Route::get('/profile/detail/{id}', function ($id) {
echo $id;
});Last updated