diff --git a/app/Livewire/Studio/Dashboard/Overview.php b/app/Livewire/Studio/Dashboard/Overview.php index 57d077a..772e181 100644 --- a/app/Livewire/Studio/Dashboard/Overview.php +++ b/app/Livewire/Studio/Dashboard/Overview.php @@ -27,6 +27,8 @@ public function mount() { $this->outlets = auth()->user()->outlets()->get()->pluck('name', 'id')->toArray(); + $this->selectedOutletIds = auth()->user()->outlets()->pluck('outlets.id')->toArray(); + $this->loadStats(); }