->headerActions([
Tables\Actions\Action::make('addTest')
->label(__('Add Test'))
->form([
Forms\Components\Textarea::make('content')
->translateLabel()
->required(),
]), // This shows
Tables\Actions\CreateAction::make(), // This does not
])
->headerActions([
Tables\Actions\Action::make('addTest')
->label(__('Add Test'))
->form([
Forms\Components\Textarea::make('content')
->translateLabel()
->required(),
]), // This shows
Tables\Actions\CreateAction::make(), // This does not
])