参考:https://readouble.com/laravel/7.x/ja/routing.html
ルーティングの際に「:」の後にカラム名を指定することで、そちらが参照されるようになります。
// routes\web.php Route::get('detail/{user:user_no}/{post:slug}', 'HomeController@detail'); // app\Http\Controllers\HomeController.php public function detail(User $user, Post $post) { }
コメント