route with function laravel code example

Example 1: call laravel route js

function confirmDelete(id){
    let url = "{{ route('getDeleteRequest', ':id') }}";
    url = url.replace(':id', id);
    document.location.href=url;
}

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/profile', [UserProfileController::class, 'show'])->name('profile');

Example 4: how to create route in laravel

Route::match(['get', 'post'], '/', function () {
    //
});

Tags:

Php Example