© 2026 Hedgehog Software, LLC
protected function getHeaderActions(): array { return [ Action::make('print'), Action::make('duplicate'), ] }
Action::make('test') ->requiresConfirmation() ->action(fn (array $data) => dd($data)), // Data is empty
Action::make('doSomething') ->action(function($record, $data) { $this->save(); // ... do something else in the action )