TextInput::make('keywords')
->required()
->maxLength(255)
,
Filament\Forms\Components\Actions::make([
Filament\Forms\Components\Actions\Action::make('generate')
->action(function () {
$this->validateOnly('keywords');
})
TextInput::make('keywords')
->required()
->maxLength(255)
,
Filament\Forms\Components\Actions::make([
Filament\Forms\Components\Actions\Action::make('generate')
->action(function () {
$this->validateOnly('keywords');
})