Action::make("Link Payment")
->label('')
->form(
function ($record) {
$this->contact = $record;
$this->invoiceGeneration();
$this->dispatchFormEvent('close-modal', ['id' => 'orphan-payment-modal']);
$this->dispatch('link-payment');
info('dispatch');
return [
$this->orphanPaymentDetails(),
$this->status ? View::make('filament.pages.payment-link-success-modal') : View::make('filament.pages.payment-link-failed-modal')
];
}
)
Action::make("Link Payment")
->label('')
->form(
function ($record) {
$this->contact = $record;
$this->invoiceGeneration();
$this->dispatchFormEvent('close-modal', ['id' => 'orphan-payment-modal']);
$this->dispatch('link-payment');
info('dispatch');
return [
$this->orphanPaymentDetails(),
$this->status ? View::make('filament.pages.payment-link-success-modal') : View::make('filament.pages.payment-link-failed-modal')
];
}
)