Esempio n. 1
0
 /**
  * Home page
  * @return view
  */
 public function home()
 {
     $articles = Article::whereType('youtube')->get();
     return view('home', compact('articles'));
 }