Add Turkmen localization and update Filament resources; configure timezone and locale settings

This commit is contained in:
2025-08-30 16:45:36 +05:00
parent cdb5cbcb18
commit 18e425f533
15 changed files with 112 additions and 17 deletions

View File

@@ -14,6 +14,7 @@ use Filament\Resources\Resource;
use Filament\Schemas\Schema;
use Filament\Support\Icons\Heroicon;
use Filament\Tables\Table;
use Illuminate\Contracts\Support\Htmlable;
class GroupResource extends Resource
{
@@ -21,7 +22,18 @@ class GroupResource extends Resource
protected static string|BackedEnum|null $navigationIcon = Heroicon::OutlinedRectangleStack;
protected static ?string $recordTitleAttribute = 'namenamenamname';
protected static ?string $navigationLabel = 'Toparlar';
protected static ?string $pluralLabel = 'Toparlar';
protected static ?string $recordTitleAttribute = 'name';
protected static ?int $navigationSort = 1;
public static function getNavigationIcon(): string | BackedEnum | Htmlable | null
{
return 'heroicon-o-user-group';
}
public static function form(Schema $schema): Schema
{