php laravel route code example
Example 1: laravel get route
Route::get('foo', function () {
return 'Hello World';
});
Example 2: artisan in route in laravel
Artisan::call('cache:clear')
Example 3: route() and with() in laravel
Route::get('user/{id}/profile', function ($id) {
})->name('profile');
$url = route('profile', ['id' => 1, 'photos' => 'yes']);
Example 4: laravel route
Route::get('user/{id}', function ($id) {
return 'User '.$id;
});
Example 5: laravel route
Route::get('user/profile', [UserProfileController::class, 'show'])->name('profile');