Files
autocrm/app/Filament/Tenant/Resources/MasterResource.php
T
Vasyka 7077fff3b3 feat(i18n): convert 38 hardcoded static labels + safe blade wrap + 226 keys
- Convert all remaining static \$modelLabel/\$pluralModelLabel to getter
  methods with __() (AppointmentResource, WorkOrderResource, MasterResource,
  ServiceTemplateResource, LaborResource, and 33 others)
- Safe blade wrap v2 (37 files, 201 wraps): fixed the regex to not match
  `->`, `=>`, `!<` — previous aggressive pass broke @if directives
- Bulk-translate lowercase model-label keys (programări, fișe lucru,
  tehnicieni, șabloane servicii, norme-ore, etc.) — these were the RO
  strings appearing in page titles/breadcrumbs
- Add human RU/EN for mechanic-kpi (Mecanic/Lucrări/Norma ore/etc.)
  and calendar-board words

Tests 306 green. Blade compiles cleanly.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-07-15 06:17:10 +00:00

129 lines
4.7 KiB
PHP

<?php
namespace App\Filament\Tenant\Resources;
use App\Filament\Tenant\Resources\MasterResource\Pages;
use App\Models\Tenant\User;
use Filament\Actions;
use Filament\Forms;
use Filament\Resources\Resource;
use Filament\Schemas;
use Filament\Schemas\Schema;
use Filament\Tables;
use Filament\Tables\Table;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Support\Facades\Hash;
/**
* Tehnicieni — vedere filtrată peste users (role=mechanic).
*/
class MasterResource extends Resource
{
protected static ?string $model = User::class;
protected static string|\BackedEnum|null $navigationIcon = 'heroicon-o-wrench';
public static function getNavigationLabel(): string
{
return __('nav.label.Tehnicieni');
}
public static function getNavigationGroup(): ?string
{
return __('nav.group.Service');
}
protected static ?string $modelLabel = null;
public static function getModelLabel(): string
{
return __('tehnician');
}
protected static ?string $pluralModelLabel = null;
public static function getPluralModelLabel(): string
{
return __('tehnicieni');
}
protected static ?int $navigationSort = 33;
public static function getEloquentQuery(): Builder
{
return parent::getEloquentQuery()->where('role', 'mechanic');
}
public static function form(Schema $schema): Schema
{
return $schema->components([
Schemas\Components\Section::make(__('Date personale'))
->columns(2)
->schema([
Forms\Components\TextInput::make('name')->label(__('Nume'))->required()->maxLength(120),
Forms\Components\TextInput::make('phone')->label(__('Telefon'))->tel()->maxLength(40),
Forms\Components\TextInput::make('email')->label(__('Email'))->email()->maxLength(120),
Forms\Components\Select::make('status')
->options(['active' => __('Activ'), 'inactive' => __('Inactiv'), 'blocked' => __('Blocat')])
->default('active')
->required(),
]),
Schemas\Components\Section::make(__('Profesie'))
->columns(2)
->schema([
Forms\Components\TextInput::make('specialization')
->label(__('Specializare'))
->placeholder(__('Motor / Frâne / Electrică ...'))
->maxLength(120),
Forms\Components\ColorPicker::make('color')->label(__('Culoare în calendar')),
Forms\Components\TextInput::make('hourly_rate')->label(__('Tarif/oră'))->numeric(),
Forms\Components\Hidden::make('role')->default('mechanic'),
]),
Schemas\Components\Section::make(__('Acces în aplicație (opțional)'))
->columns(1)
->collapsed()
->schema([
Forms\Components\TextInput::make('password')
->label(__('Parolă (lasă gol pentru a nu schimba)'))
->password()
->minLength(6)
->dehydrated(fn ($state) => filled($state))
->dehydrateStateUsing(fn ($state) => Hash::make($state)),
]),
]);
}
public static function table(Table $table): Table
{
return $table
->columns([
Tables\Columns\ColorColumn::make('color')->label(''),
Tables\Columns\TextColumn::make('name')->searchable()->sortable(),
Tables\Columns\TextColumn::make('specialization')->label(__('Specializare'))->placeholder('—'),
Tables\Columns\TextColumn::make('phone')->copyable()->placeholder('—'),
Tables\Columns\TextColumn::make('hourly_rate')->label(__('Tarif/h'))->money('MDL')->alignRight()->placeholder('—'),
Tables\Columns\TextColumn::make('status')
->badge()
->colors([
'success' => ['active'],
'warning' => ['inactive'],
'danger' => ['blocked'],
]),
])
->actions([
Actions\EditAction::make(),
Actions\DeleteAction::make(),
])
->defaultSort('name');
}
public static function getPages(): array
{
return [
'index' => Pages\ListMasters::route('/'),
'create' => Pages\CreateMaster::route('/create'),
'edit' => Pages\EditMaster::route('/{record}/edit'),
];
}
}