Guest User

Untitled

a guest
Oct 17th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. public function comments()
  2. {
  3. $comments = \App\Comment::orderBy('created_at', 'desc')->get();
  4.  
  5. $view = ['url' => route('posts.store'),
  6. 'comments' => $comments,
  7. 'subview' => 'dashboard.comments'
  8. ];
  9. return view('dashboard.main', compact('comments'))->with('view', $view);;
  10. }
  11.  
  12. @includeWhen(in_array('subview', $view), $view->subview)
Add Comment
Please, Sign In to add comment