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