“Laravel existe elocuente” Código de respuesta

Laravel existe

if (User::where('email', $request->email)->exists()) {
   //email exists in user table
}
Mohamad

Actualización de Laravel si existe o crea

$flight = App\Flight::updateOrCreate(
    ['departure' => 'Oakland', 'destination' => 'San Diego'],
    ['price' => 99]
);
Yousef Qaoud

Laravel existe elocuente

//It depends if you want to work with the user afterwards or only check
//if one exists.

//If you want to use the user object if it exists:

$user = User::where('email', '=', Input::get('email'))->first();
if ($user === null) {
   // user doesn't exist
}
//And if you only want to check
if (User::where('email', '=', Input::get('email'))->count() > 0) {
   // user found
}
//Or even nicer

if (User::where('email', '=', Input::get('email'))->exists()) {
   // user found
}
Shadow

Laravel existe elocuente

if (DB::table('orders')->where('finalized', 1)->doesntExist()) {
    // ...
}
Shadow

Respuestas similares a “Laravel existe elocuente”

Preguntas similares a “Laravel existe elocuente”

Más respuestas relacionadas con “Laravel existe elocuente” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código