laravel route model binding declare variable code example
Example 1: 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 2: laravel routes return view in web.php
Route::get("/page", function(){
return View::make("dir.page");
});