/**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $turmas = Turma::turmasComCurso();
     $cursos = Curso::all();
     return view('admin.turma', ['turmas' => $turmas, 'cursos' => $cursos]);
 }
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $cursos = Curso::all();
     return $cursos;
 }
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $cursos = Curso::all();
     return view('admin.curso', ['cursos' => $cursos]);
 }