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