to find posts by email
$post = Post::where('phone',$request->iqama_no)->first();
find comments
$comments = Comments::where('post_id', $post->id)->get();
there's better way , but you have to include how you implemented the model to make sure I gave you the correct answer