components([ Forms\Components\TextInput::make('name')->label('Denumire')->required()->columnSpanFull(), Forms\Components\TextInput::make('article')->label('Cod articol')->maxLength(64), Forms\Components\TextInput::make('brand')->label('Brand')->maxLength(64), Forms\Components\TextInput::make('qty')->label('Cantitate')->numeric()->default(1)->required(), Forms\Components\TextInput::make('unit')->label('UM')->maxLength(16)->default('buc'), Forms\Components\TextInput::make('buy_price')->label('Preț achiziție')->numeric()->default(0), Forms\Components\TextInput::make('sell_price')->label('Preț vânzare')->numeric()->required(), Forms\Components\TextInput::make('discount_pct')->label('Discount %')->numeric()->default(0), Forms\Components\Select::make('status') ->options(WorkOrderPart::STATUSES) ->default('needed') ->required(), Forms\Components\Textarea::make('notes')->label('Observații')->columnSpanFull()->rows(2), ]); } public function table(Table $table): Table { return $table ->recordTitleAttribute('name') ->columns([ Tables\Columns\TextColumn::make('name')->label('Piesă')->wrap(), Tables\Columns\TextColumn::make('article')->label('Cod')->placeholder('—'), Tables\Columns\TextColumn::make('brand')->placeholder('—'), Tables\Columns\TextColumn::make('qty')->label('Cant.')->alignRight(), Tables\Columns\TextColumn::make('sell_price')->label('Preț')->money('MDL')->alignRight(), Tables\Columns\TextColumn::make('total')->money('MDL')->alignRight(), Tables\Columns\TextColumn::make('status') ->formatStateUsing(fn ($s) => WorkOrderPart::STATUSES[$s] ?? $s) ->badge() ->colors([ 'gray' => ['needed'], 'warning' => ['ordered'], 'info' => ['delivered'], 'success' => ['installed'], ]), ]) ->headerActions([ Actions\CreateAction::make(), ]) ->actions([ Actions\EditAction::make(), Actions\DeleteAction::make(), ]); } }