form->setBottle($bottle); $this->outlets = Outlet::pluck('name', 'id')->toArray(); } public function save() { $this->form->update(); $this->dispatch('refreshDatatable'); Flux::toast( heading: 'Berhasil', text: 'Botol berhasil diperbarui.', variant: 'success', duration: 3000 ); $this->redirectRoute('studio.catalog.bottle.index', navigate: true); } public function render() { return view('livewire.studio.catalog.bottle.form', [ 'pageTitle' => 'Ubah Botol', ]); } }