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