form->setOutlet($outlet); $this->days = Day::cases(); } public function save(): void { $this->canOrAbort('update outlet'); $this->form->update(); $this->redirectRoute('studio.master.outlet.index', [ 'notification' => 'Outlet berhasil diperbarui.', ], navigate: true); } public function render(): View { return view('livewire.studio.master.outlet.form', [ 'pageTitle' => 'Ubah Outlet', ]); } }