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