redirect()->to()
Route::get('redirect', function () {
return redirect()->to('home');
// Or same, using the shortcut:
return redirect('home');
});Last updated
Route::get('redirect', function () {
return redirect()->to('home');
// Or same, using the shortcut:
return redirect('home');
});Last updated