public function openedCourses() { $today = Carbon::today(); return Course::where('start_date', '>=', $today->toDateString())->with('professor')->with('venue')->with('subject')->get(); }
public function show($id) { return Response::json(Course::findOrFail($id)); }