예제 #1
0
 public function showGaleria()
 {
     $participantes = Participante::all();
     return view('competitors.gallery', compact('participantes', $participantes));
 }
예제 #2
0
 /**
  * Returns all Participantes
  *
  * @return \Illuminate\Database\Eloquent\Collection|static[]
  */
 public function all()
 {
     return Participante::all();
 }