diff --git a/app/Livewire/Forms/Studio/Master/OutletForm.php b/app/Livewire/Forms/Studio/Master/OutletForm.php index ae91eea..85fd2c3 100644 --- a/app/Livewire/Forms/Studio/Master/OutletForm.php +++ b/app/Livewire/Forms/Studio/Master/OutletForm.php @@ -184,6 +184,9 @@ public function update() $this->syncMedia($data['featured_image'], $this->outlet, 'featured_image'); $this->syncMedia($data['images'], $this->outlet, 'images'); + + $this->uploadMedia($this->featured_image, $this->outlet, 'featured_image'); + $this->uploadMedia($this->images, $this->outlet, 'images'); }); } }