📜  laravel db 不存在 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:38.895000             🧑  作者: Mango

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

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