->modalFooterActions([
Action::make('approve')
->color('success')
->icon('heroicon-o-check')
->cancelParentActions()
->action(function (): void {
dd('Here');
$record->approve();
Notification::make()
->success()
->title($record->full_name . ' has been approved');
}),
->modalFooterActions([
Action::make('approve')
->color('success')
->icon('heroicon-o-check')
->cancelParentActions()
->action(function (): void {
dd('Here');
$record->approve();
Notification::make()
->success()
->title($record->full_name . ' has been approved');
}),