예제 #1
0
 public function findLatest()
 {
     $auxOrdenados = Eventos::orderBy('created_at', 'DESC')->take(5)->get();
     return $auxOrdenados;
 }