components([ Forms\Components\TextInput::make('cross_article')->label('Cod echivalent')->required()->maxLength(64), Forms\Components\TextInput::make('brand')->label('Brand')->maxLength(64), ]); } public function table(Table $table): Table { return $table ->recordTitleAttribute('cross_article') ->columns([ Tables\Columns\TextColumn::make('cross_article')->label('Cod')->searchable(), Tables\Columns\TextColumn::make('brand')->placeholder('—'), ]) ->headerActions([Actions\CreateAction::make()]) ->actions([Actions\EditAction::make(), Actions\DeleteAction::make()]) ->emptyStateHeading('Niciun cod cross') ->emptyStateDescription('Adaugă coduri echivalente OEM/aftermarket ca să fie găsite în căutarea din magazin.'); } }