laravel get route by name no paramaters code example
Example 1: add id to route name in laravel blade
route('something.edit', ['id' => $event->data->id])
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