laravel 参数设置
路由命名
Route::get('user/{id?}', function ($id = 1) { return "用户ID: " . $id; })->name('user.profile');
引用
<a href="{{ route('user.profile', ['id' => 100]) }}"> // 输出:http://blog.test/user/100
或者
<a href="{{ route('user.profile', [100]) }}">
//路由参数
Route::get('user/{id}', function ($id) {
return "用户ID: " . $id;
});