1 回答
TA贡献1773条经验 获得超3个赞
这正是firstOrCreate()
可以用来做的事情。
Model::firstOrCreate( ['number' => $num], ['another' => $another] );
会找到一个模型['number' => $num]
,其中 ,如果没有找到,它将创建一个新模型['number' => $num]
和 ['another' => $another]
https://laravel.com/docs/7.x/eloquent#other-creation-methods
- 1 回答
- 0 关注
- 96 浏览
添加回答
举报