10. Chuyển hướng đến controller action (Redirecting to controller action)(ok)
https://viblo.asia/p/tap-17-response-laravel-aWj534RGK6m
Route::get('/', function() {
return redirect()->action('HomeController@show');
});
Route::get('/home', 'HomeController@show');public function show()
{
return 'Home page';
}Previous9. Chuyển hướng đến route được đặt tên (Redirecting to named route)(ok)Next11. Chuyển hướng đến tên miền bên ngoài (Redirecting to external domain)(ok)
Last updated