I am new to Laravel. Please excuse the newbie question but how do I find if a record exists?
$user = User::where(\'em
This will check if requested email exist in the user table:
if (User::where('email', $request->email)->exists()) { //email exists in user table }