form->setVoucher($voucher); $this->outlets = Outlet::pluck('name', 'id')->toArray(); } public function save() { $this->canOrAbort('update voucher'); $this->form->update(); $this->toast('Voucher berhasil diperbarui.'); $this->redirectRoute('studio.loyalty.voucher.index'); } public function render() { return view('livewire.studio.loyalty.voucher.form', [ 'pageTitle' => 'Ubah Voucher', ]); } }