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