laravel 7 route code example

Example 1: laravel 8 route

Route::get(
    '/user/profile',
    [UserProfileController::class, 'show']
)->name('profile');

Example 2: route() and with() in laravel

Route::get('user/{id}/profile', function ($id) {
    //
})->name('profile');

$url = route('profile', ['id' => 1, 'photos' => 'yes']);

// /user/1/profile?photos=yes

Example 3: laravel route

Route::get('user/{id}', function ($id) {
    return 'User '.$id;
});

Example 4: routing in laravel

Route::view('/welcome', 'welcome');
Route::view('/welcome', 'welcome', ['name' => 'Taylor']);

Tags:

Php Example