diff --git a/app/Livewire/Studio/Dashboard/Analysis.php b/app/Livewire/Studio/Dashboard/Analysis.php index 34148c6..c5db1ff 100644 --- a/app/Livewire/Studio/Dashboard/Analysis.php +++ b/app/Livewire/Studio/Dashboard/Analysis.php @@ -54,7 +54,7 @@ public function mount() { $this->outlets = auth()->user()->outlets()->get()->pluck('name', 'id')->toArray(); - $this->selectedOutletIds = auth()->user()->outlets()->pluck('outlets.id')->toArray(); + $this->selectedOutletIds = []; $this->loadData(); } diff --git a/app/Livewire/Studio/Dashboard/Overview.php b/app/Livewire/Studio/Dashboard/Overview.php index 609bab1..9270079 100644 --- a/app/Livewire/Studio/Dashboard/Overview.php +++ b/app/Livewire/Studio/Dashboard/Overview.php @@ -27,7 +27,7 @@ public function mount() { $this->outlets = auth()->user()->outlets()->get()->pluck('name', 'id')->toArray(); - $this->selectedOutletIds = auth()->user()->outlets()->pluck('outlets.id')->toArray(); + $this->selectedOutletIds = []; $this->loadStats(); }