row not exists in sql laravel code example
Example: if notexists in laravel query
if (User::where('email', '=', Input::get('email'))->exists()) {
// user found
}
if (User::where('email', '=', Input::get('email'))->exists()) {
// user found
}