gpt4 book ai didi

mysql - 将两个变量传递给 Laravel 中的方法

转载 作者:行者123 更新时间:2023-12-02 10:59:00 24 4
gpt4 key购买 nike

我想在 url 中找到 slug 的帖子..但评论必须通过post_id找到

Controller

public function post($slug,$id)
{
$post = Post::where('slug',$slug)->first();
$comments = Comment::where('post_id',$id)->get();
return view('content.post',compact('post','comments'));
}

路线

Route::get('post/{slug}', 'PagesController@post')->name('post.show');

最佳答案

Route::get('post/{slug}', 'PagesController@post')->name('post.show');
public function post($slug)
{
$post = Post::where('slug',$slug)->first();
$comments = Comment::where('post_id',$post->id)->get();
return view('content.post',compact('post','comments'));
}

关于mysql - 将两个变量传递给 Laravel 中的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60263463/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com