how to route pages in laravel code example
Example 1: laraval routing
Route::redirect('/here', '/there', 301);
Example 2: laravel route
Route::get('user/profile', [UserProfileController::class, 'show'])->name('profile');
Example 3: laraval routing
Route::redirect('/here', '/there');