Files
autocrm/app/Filament/Tenant/Resources/WarehouseResource.php
T
Vasyka f7fc69077b feat(i18n): wrap 1103 hardcoded UI strings across Filament with __()
- Convert static $modelLabel/$pluralModelLabel/$title to getter methods
- Wrap ->label()/->placeholder()/->helperText()/->description()/->title()/->body() args
- Wrap Section::make()/Fieldset::make()/Notification::make()->title() args
- Fix RelationManagers::getTitle() signature to match parent (Model, string)
- Fix Pages::getTitle() to instance method (BasePage::getTitle is non-static)
- Extend lang/ru.json + lang/en.json with 700+ common terms; identity fallback for the rest
- Remove duplicate getters in 5 resources that had manual getModelLabel already

All 306 tests pass. Missing translations fall back to the RO key so the UI never breaks.

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

83 lines
3.0 KiB
PHP

<?php
namespace App\Filament\Tenant\Resources;
use App\Filament\Tenant\Resources\WarehouseResource\Pages;
use App\Models\Tenant\Warehouse;
use Filament\Actions;
use Filament\Forms;
use Filament\Resources\Resource;
use Filament\Schemas;
use Filament\Schemas\Schema;
use Filament\Tables;
use Filament\Tables\Table;
class WarehouseResource extends Resource
{
protected static ?string $model = Warehouse::class;
protected static string|\BackedEnum|null $navigationIcon = 'heroicon-o-building-storefront';
public static function getNavigationLabel(): string
{
return __('nav.label.Depozite');
}
public static function getNavigationGroup(): ?string
{
return __('nav.group.Depozit');
}
protected static ?string $modelLabel = 'depozit';
protected static ?string $pluralModelLabel = 'depozite';
protected static ?int $navigationSort = 38;
public static function form(Schema $schema): Schema
{
return $schema->components([
Schemas\Components\Section::make()->columns(2)->schema([
Forms\Components\TextInput::make('code')->label(__('Cod'))->required()->maxLength(32),
Forms\Components\TextInput::make('name')->label(__('Denumire'))->required()->maxLength(120),
Forms\Components\TextInput::make('address')->label(__('Adresă'))->columnSpanFull()->maxLength(200),
Forms\Components\Toggle::make('is_default')->label(__('Depozit implicit')),
Forms\Components\Toggle::make('is_active')->label(__('Activ'))->default(true),
]),
]);
}
public static function table(Table $table): Table
{
return $table
->columns([
Tables\Columns\TextColumn::make('code')->searchable()->sortable(),
Tables\Columns\TextColumn::make('name')->searchable()->sortable(),
Tables\Columns\TextColumn::make('address')->placeholder('—')->toggleable(),
Tables\Columns\IconColumn::make('is_default')->label(__('Implicit'))->boolean(),
Tables\Columns\IconColumn::make('is_active')->label(__('Activ'))->boolean(),
Tables\Columns\TextColumn::make('batches_count')
->counts('batches')
->label(__('Loturi'))
->alignRight(),
])
->actions([
Actions\EditAction::make(),
Actions\DeleteAction::make(),
])
->emptyStateHeading(__('Niciun depozit'))
->emptyStateDescription(__('Un depozit implicit a fost creat la migrare. Adaugă altele dacă ai locații fizice separate (sucursală, hală, mobil).'))
->emptyStateIcon('heroicon-o-building-storefront')
->defaultSort('code');
}
public static function getPages(): array
{
return [
'index' => Pages\ListWarehouses::route('/'),
'create' => Pages\CreateWarehouse::route('/create'),
'edit' => Pages\EditWarehouse::route('/{record}/edit'),
];
}
}