url($this->getResource()::getUrl('index')) ->icon('heroicon-m-arrow-uturn-left') ->button() ->outlined() ->color('primary'), Action::make('Save') ->action('save') ->keyBindings(['mod+s']) ->icon('heroicon-m-cloud-arrow-up'), Action::make('ExportToWord') ->icon('heroicon-m-document-arrow-down') ->color('gray') ->action(fn () => ExportToWord::make($this->getRecord())->handle()->download()), DeleteAction::make() ->icon('heroicon-m-trash'), ]; } protected function getFormActions(): array { return []; // necessary to remove the bottom actions } }