Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public function show(Post $post){
  2. $postWithComments = Post::where('id', $post->id)->with('comments')->first();
  3. }
  4.  
  5. public function show(Post $post){
  6. $postWithComments = $post->with('comments')->first();
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement