Ejemplo n.º 1
0
 public function action_index()
 {
     $instructors = Instructor::all();
     $schedule = Schedule::all('Fall 2012');
     //dd($instructors);
     //dd($schedule);
     $data = array('itp_instructors' => $instructors, 'scheduled_courses' => $schedule);
     return View::make('home.index', $data);
 }