value; protected static ?int $navigationSort = 4; protected static ?string $modelLabel = 'Hợp đồng'; protected static ?string $pluralModelLabel = 'Hợp đồng'; public static function form(Schema $schema): Schema { return ContractForm::configure($schema); } public static function table(Table $table): Table { return $table ->columns([ Tables\Columns\TextColumn::make('contract_number')->label('Số HĐ')->searchable(), Tables\Columns\TextColumn::make('product.code')->label('Sản phẩm'), Tables\Columns\TextColumn::make('total_value')->label('Giá trị')->money('VND'), ]); } public static function getRelations(): array { return [ScheduleItemsRelationManager::class]; } public static function getPages(): array { return [ 'index' => Pages\ListContracts::route('/'), 'create' => Pages\CreateContract::route('/create'), 'edit' => Pages\EditContract::route('/{record}/edit'), ]; } }