怎么判断 laravel的model 的数据库为空

2025-04-03 04:34:23
推荐回答(1个)
回答1:

1.
find --> 返回 object or empty
ex:
$p = Project::find($id);
if(empty($p)) {
dd('project is empty');
}

get --> 返回object , 透过count 方法判断
ex:
$p = Project::where('user_id', '=', $userid)->get();
if($p->count() == 0) {
dd('project is empty');
}