Answers for "laravel exists query"

PHP
2

laravel db exists

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

if (DB::table('orders')->where('finalized', 1)->doesntExist()) {
    // ...
}
Posted by: Guest on August-14-2021
1

laravel exist

if($user->isEmpty()){
    // has no records
}
Posted by: Guest on July-31-2021

Browse Popular Code Answers by Language