filter ?: []; $data = [ ENTITY_INVOICE => Invoice::scope()->invoices(), ENTITY_QUOTE => Invoice::scope()->quotes(), ENTITY_TASK => Task::scope()->with(['project']), ENTITY_PAYMENT => Payment::scope()->with(['invoice']), ENTITY_EXPENSE => Expense::scope()->with(['expense_category']), ]; foreach ($data as $type => $source) { if (! count($filter) || in_array($type, $filter)) { $source->where(function($query) use ($type) { $start = date_create(request()->start); $end = date_create(request()->end); return $query->dateRange($start, $end); }); foreach ($source->with(['account', 'client.contacts'])->get() as $entity) { if ($entity->client && $entity->client->trashed()) { continue; } $subColors = count($filter) == 1; $events[] = $entity->present()->calendarEvent($subColors); } } } return $events; } }