Halt modal action
- here i want to halt the process or u can say action until it completed
then move to next step
- is there a way i can do that
1 Reply
Action::make('scan')->label('QR Scanner')
->icon("qrScannerIcon")
->form([
TextInput::make('firstName')
->label('First Name')->required()->extraAttributes(['class' => 'purchase-qr-payment-info']),
])
->modalFooterActions([
Action::make('Qr registration')->form([
TextInput::make('lastName')
]),
])
Here i want to validate form of the scan when i click the Qr registaration action.