form->setBottle($bottle); $this->outlets = Outlet::pluck('name', 'id')->toArray(); } public function save(): void { $this->canOrAbort('update bottle'); $this->form->update(); $this->redirectRoute('studio.catalog.bottle.index', [ 'notification' => 'Botol berhasil diperbarui.', ], navigate: true); } public function render(): View { return view('livewire.studio.catalog.bottle.form', [ 'pageTitle' => 'Ubah Botol', ]); } }