Edit Resource Delete Header Action not showing up.

   protected function getHeaderActions(): array
    {
        return [
            Actions\DeleteAction::make('Delete me'),
            Actions\Action::make('Cancel Subscription')->action(function(){

                /// custom stuff

            })
        ];
    }

The cancel button is showing but the delete button isn't, Not sure why?
Was this page helpful?