public function index()
 {
     $turmas = Turma::paginate(5);
     return View::make('turma.index', ['turmas' => $turmas]);
 }