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