value; protected static ?int $navigationSort = 100; protected static ?string $modelLabel = 'Ngườ dùng'; protected static ?string $pluralModelLabel = 'Ngườ dùng'; public static function form(Schema $schema): Schema { return UserForm::configure($schema); } public static function table(Table $table): Table { return UsersTable::configure($table); } public static function getPages(): array { return [ 'index' => Pages\ListUsers::route('/'), 'create' => Pages\CreateUser::route('/create'), 'edit' => Pages\EditUser::route('/{record}/edit'), ]; } }