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 ContractsTable::configure($table); } 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'), ]; } }