, * schedules: Collection, * services: Collection * } */ public function get(Tenant $tenant): array { $attributes = Attribute::query() ->where('tenant_codigo', $tenant->codigo) ->whereIn('codigo', ['horario', 'servicio']) ->with('options') ->get() ->keyBy('codigo'); return [ 'event_dates' => $tenant->eventDates()->with('validityTime')->get(), 'schedules' => $attributes->get('horario')?->options ?? new Collection, 'services' => $attributes->get('servicio')?->options ?? new Collection, ]; } }