$this->modalFooterActions([
Action::make('submit')
->form([
// some display data here (maybe should use infolist)
])
->fillForm(function (array $data) {
// Need parent data here
})
->modalWidth('md')
->cancelParentActions()
->action(function (array $data) {
// Execute the action here
}),
$this->getModalCancelAction()
]);
$this->modalFooterActions([
Action::make('submit')
->form([
// some display data here (maybe should use infolist)
])
->fillForm(function (array $data) {
// Need parent data here
})
->modalWidth('md')
->cancelParentActions()
->action(function (array $data) {
// Execute the action here
}),
$this->getModalCancelAction()
]);