Action::make('insert_coupons')
->form([TextInput::make('qty')->numeric()])
->action(function($data, $livewire) {
$parent_id = $livewire->parent_recorrd_id;
$qty = (int) $data['qty'];
// Build a loop and create all the records as normal
// Send notification of records created
})
Action::make('insert_coupons')
->form([TextInput::make('qty')->numeric()])
->action(function($data, $livewire) {
$parent_id = $livewire->parent_recorrd_id;
$qty = (int) $data['qty'];
// Build a loop and create all the records as normal
// Send notification of records created
})