Le modèle Laravel n'existe pas ID
if (DB::table('orders')->where('finalized', 1)->doesntExist()) {
// ...
}
Shadow
if (DB::table('orders')->where('finalized', 1)->doesntExist()) {
// ...
}
if (User::where('email', '=', Input::get('email'))->exists()) {
// user found
}