public function index() { $data['is_showzhiye'] = Zhiye::where('z_show', '=', '1')->get(); $data['allzhiye'] = Zhiye::all(); $data['is_showcompany'] = Company::where('c_show', '=', '1')->get(); $data['allcompany'] = Company::all(); $data['alltime'] = Time::all(); return view('contestRoom.index', $data); }
function room($roomId) { $data['system'] = $this->system; $room = Classroom::findOrFail($roomId); $data['room_id'] = $roomId; $data['room_name'] = $room->legacycode; $data['location'] = $room->location; $data['days'] = Day::where('id', '!=', 8)->get(); $data['times'] = Time::all(); $schedCollection = new SchedCollection(); $data['table_day'] = $schedCollection->getSchedRoom($roomId, $this->system); return view('edp.room_sched', $data); }
public function show($id) { $inst = Party::find($id); if ($inst instanceof ModelNotFoundException) { return view('errors.404'); } $data['instructor'] = $inst; $data['classes'] = Classallocation::where('academicterm', $this->system->phaseterm)->where('instructor', $id); $data['days'] = Day::where('id', '!=', 8)->get(); $data['times'] = Time::all(); $schedCollection = new SchedCollection(); $data['table_day'] = $schedCollection->getSchedInstructor($id, $this->system); return view('instructor.sched', $data); }