示例#1
0
 /**
  * Display a listing of skemas
  *
  * @return Response
  */
 public function index()
 {
     $skemas = Skema::with('Contest')->get();
     return View::make('skemas.index', compact('skemas'))->withTitle('Skema');
 }