value; protected static ?int $navigationSort = 6; protected static ?string $modelLabel = 'Tiền phạt'; protected static ?string $pluralModelLabel = 'Tiền phạt'; public static function form(Schema $schema): Schema { return PaymentFineForm::configure($schema); } public static function table(Table $table): Table { return PaymentFinesTable::configure($table); } public static function getPages(): array { return [ 'index' => Pages\ListPaymentFines::route('/'), 'create' => Pages\CreatePaymentFine::route('/create'), 'edit' => Pages\EditPaymentFine::route('/{record}/edit'), ]; } }