Beispiel #1
0
 public function indexSite()
 {
     $noticias = Noticia::orderBy('created_at', 'desc')->where('created_at', '<', 'NOW()')->get();
     return view('noticias.index', ['noticias' => $noticias]);
 }