Laravel web php request to redirect to another page Code Example
laravel response redirect
#Method 1 with route name
return redirect()->route('login');
#Method 2 back with input
return back()->withInput();
#Method 2 using a url
return redirect('/home/dashboard');
laravel web php request to redirect to another page
Route::get('/{any}', function () {
return redirect('https://questa.uz');
})->where('any', '.*');