Find or Create with Eloquent

后端 未结 6 1843
我在风中等你
我在风中等你 2020-12-06 04:22

I have recently started working with Laravel and Eloquent, and was wondering about the lack of a find or create option for models. You could always write, for example:

6条回答
  •  春和景丽
    2020-12-06 04:40

    Alternatively, in this case you can also use Laravel's function and search for id as an attribute, i.e.

    $user = User::firstOrCreate(['id' => $id]);
    

提交回复
热议问题