value; protected static ?int $navigationSort = 2; protected static ?string $modelLabel = 'Sản phẩm'; protected static ?string $pluralModelLabel = 'Sản phẩm'; public static function form(Schema $schema): Schema { return ProductForm::configure($schema); } public static function table(Table $table): Table { return \App\Filament\Resources\Products\Tables\ProductsTable::configure($table); } public static function getRelations(): array { return [ContractsRelationManager::class]; } public static function getPages(): array { return [ 'index' => Pages\ListProducts::route('/'), 'create' => Pages\CreateProduct::route('/create'), 'edit' => Pages\EditProduct::route('/{record}/edit'), ]; } }