components([ Forms\Components\Select::make('kind') ->label('Tip') ->options(ServiceTemplateItem::KINDS) ->default('labor') ->live() ->required(), Forms\Components\Select::make('labor_id') ->label('Manoperă') ->options(fn () => Labor::where('is_active', true)->pluck('name_ro', 'id')) ->searchable() ->visible(fn (Get $get) => $get('kind') === 'labor') ->live() ->afterStateUpdated(function ($state, Set $set) { if ($state && $l = Labor::find($state)) { $set('name', $l->name_ro); $set('hours', $l->hours); } }), Forms\Components\Select::make('part_id') ->label('Piesă') ->options(fn () => Part::where('is_active', true) ->get()->mapWithKeys(fn ($p) => [$p->id => "{$p->name} " . ($p->article ? "[{$p->article}]" : '')])->toArray()) ->searchable() ->visible(fn (Get $get) => $get('kind') === 'part') ->live() ->afterStateUpdated(function ($state, Set $set) { if ($state && $p = Part::find($state)) $set('name', $p->name); }), Forms\Components\TextInput::make('name')->label('Denumire')->required()->columnSpanFull(), Forms\Components\TextInput::make('hours')->label('Ore')->numeric() ->visible(fn (Get $get) => $get('kind') === 'labor'), Forms\Components\TextInput::make('qty')->label('Cantitate')->numeric()->default(1) ->visible(fn (Get $get) => $get('kind') === 'part'), ]); } public function table(Table $table): Table { return $table ->recordTitleAttribute('name') ->columns([ Tables\Columns\TextColumn::make('kind') ->label('Tip') ->formatStateUsing(fn ($s) => ServiceTemplateItem::KINDS[$s] ?? $s) ->badge() ->color(fn ($s) => $s === 'labor' ? 'info' : 'gray'), Tables\Columns\TextColumn::make('name')->wrap(), Tables\Columns\TextColumn::make('hours')->label('Ore')->placeholder('—')->alignRight(), Tables\Columns\TextColumn::make('qty')->label('Cant.')->placeholder('—')->alignRight(), ]) ->headerActions([Actions\CreateAction::make()]) ->actions([Actions\EditAction::make(), Actions\DeleteAction::make()]); } }