@@ -26,11 +26,11 @@ |
||
26 | 26 | Cache::put('deletedLostOrders', '1', $expiresAt); |
27 | 27 | } |
28 | 28 | |
29 | - $projects = Project::where('is_archived', 0)->with(['events' => function ($query) { |
|
29 | + $projects = Project::where('is_archived', 0)->with(['events' => function($query) { |
|
30 | 30 | $query->where('customer_sell_stop', '>=', new \DateTime())->orderBy('start_date', 'ASC'); |
31 | 31 | }, 'events.location'])->get(); |
32 | 32 | |
33 | - $currentProjects = $projects->filter(function ($project) { |
|
33 | + $currentProjects = $projects->filter(function($project) { |
|
34 | 34 | return $project->events->count() > 0; |
35 | 35 | })->all(); |
36 | 36 |