Ejemplo n.º 1
0
 public function index()
 {
     $contests = Contest::where('visible', true)->orderBy('id', 'desc')->get();
     return view('contests.index')->with('contests', $contests);
 }