Exemplo n.º 1
0
 public function getTrainers()
 {
     $trainers = Trainer::with('user')->orderBy('id')->paginate(10);
     $semesters = Semester::all();
     $sections = Section::all();
     $this->layout->content = View::make('admin.dashboard')->with('title', 'Trainers')->nest('innerContent', 'admin.trainerlist', array('trainers' => $trainers, 'semesters' => $semesters, 'sections' => $sections));
 }