country = request()->route('country'); } public function with(): array { return [ 'course' => $this->course->load('lecturer'), 'events' => $this->course ->courseEvents() ->with(['venue.city']) ->where('from', '>=', now()) ->orderBy('from', 'asc') ->get(), ]; } }; ?>