/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $schedule = WeeklySchedule::fromTimeSlots(TimeSlot::with('djForTimeslot', 'showForTimeslot')->get());
     return view('admin.schedule.index')->withSchedule($schedule);
 }