Esempio n. 1
0
 /**
  * Execute the job.
  *
  * @return void
  */
 public function handle()
 {
     //
     $comments = Comment::allComments();
     if (isset($comments)) {
         return view('blog.cms.comment.index')->with('comments', $comments);
     } else {
         abort(404);
     }
 }