1.

How to check if value is sent in request?

Answer»

To CHECK the email VALUE is sent or not in request, you can USE $request->has('email')

Example

if($request->has('email')) {
     // email value is sent from request
} else {
    // email value not sent from request
}



Discussion

No Comment Found