14. Kiểm tra nếu có giá trị input (Checking if has input value)
if ($request->has('name')) {
//
}if ($request->has(['name', 'email'])) {
//
}if ($request->filled('name')) {
//
}8. Old input
Previous13. Lấy một phần dữ liệu input (Retrieving a portion of input data)Next15. Flash input đến session (Flash input to the session)
Last updated