Skip to main content
Category:

Add Parameters to Routes in Laravel


If you pass additional parameters to the route, in the array, those key / value pairs will automatically be added to the generated URL's query string.

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

 

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

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

Riadh Rahmi

Senior Web Developer PHP/Drupal & Laravel

I am a senior web developer, I have experience in planning and developing large scale dynamic web solutions especially in Drupal & Laravel.

Web Posts

Search

Page Facebook