12. Chuyển hướng với flash session (Redirecting with flash session)(ok)
https://viblo.asia/p/tap-17-response-laravel-aWj534RGK6m
Route::get('/', function() {
return redirect('home')->with('name', 'Lê Chí Huy');
});
Route::get('/home', function() {
return view('home');
});<h1>
@if (session('name'))
Welcome, {{ session('name') }}
@else
Welcome
@endif
</h1>Previous11. Chuyển hướng đến tên miền bên ngoài (Redirecting to external domain)(ok)Next13. Các loại response khác: View response (Other response types)
Last updated