->modalFooterActions([
Action::make('submit')
->label('Link item to inventory')
->action(function (Action $action) {
$this->dispatch('order-scanner-modal-closed', true);
}),
Action::make('cancel')
->label('Cancel')
->action(function () {
$this->dispatch('order-scanner-modal-closed', false);
}),
])
->modalFooterActions([
Action::make('submit')
->label('Link item to inventory')
->action(function (Action $action) {
$this->dispatch('order-scanner-modal-closed', true);
}),
Action::make('cancel')
->label('Cancel')
->action(function () {
$this->dispatch('order-scanner-modal-closed', false);
}),
])