15. Flash input đến session (Flash input to the session)
https://viblo.asia/p/tap-16-request-laravel-aWj534Y8K6m
a. Flash input đến session (Flash input to the session)
$request->flash();// Chỉ flash session hai input "username" và "email" trong request
$request->flashOnly(['username', 'email']);
// Flash session tất cả input, ngoại trừ input "password" trong request
$request->flashExcept('password');Previous14. Kiểm tra nếu có giá trị input (Checking if has input value)Next16. Flash input rồi chuyển hướng (Flash input then redirecting)
Last updated