value; protected static ?int $navigationSort = 5; protected static ?string $modelLabel = 'Phiếu thu'; protected static ?string $pluralModelLabel = 'Phiếu thu'; public static function form(Schema $schema): Schema { return PaymentForm::configure($schema); } public static function table(Table $table): Table { return PaymentsTable::configure($table); } public static function getEloquentQuery(): \Illuminate\Database\Eloquent\Builder { return parent::getEloquentQuery() ->with(['scheduleItem.payments']); } public static function getPages(): array { return [ 'index' => Pages\ListPayments::route('/'), 'create' => Pages\CreatePayment::route('/create'), 'edit' => Pages\EditPayment::route('/{record}/edit'), ]; } }