📜  如何在刀片 laravel 中获取 url 参数 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:35.576000             🧑  作者: Mango

代码示例3
Route::get('/posts/{post}/comments/{comment}', function ($postId, $commentId) {
    return view('name of the view')->with('postId',$postId);
});