基本上我想通过电话号码选择和匹配帖子数据,并通过相应的帖子 ID 显示对该帖子的所有评论。
公共功能案例文件(请求$请求) {
$pid = DB::table('Posts')
->select()->where('phone', '=', $request->iqama_no)
->get();
$posts= Post::find($pid->id);
dd($posts);
result want to :: id= 1
通过电子邮件查找帖子
$post = Post::where('phone',$request->iqama_no)->first();
查找评论
$comments = Comments::where('post_id', $post->id)->get();
有更好的方法,但你必须包括你如何实现模型以确保我给你正确的答案