Example #1
0
 public function listComment()
 {
     $comments = Comment::getCommentsOrdered();
     $users = User::All();
     $this->layout->title = trans('messages.Comment Listings');
     $this->layout->main = View::make('admin.dashboard')->nest('content', 'comments.list', compact('comments', 'users'));
 }