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