标签: eloquent
我在我的模型中使用了create函数扩展了Eloquent 5.6模型,但是我在Eloquent Model中找不到该函数实现,请告诉我源代码在哪里创建函数代码?
答案 0 :(得分:0)
create()方法位于Illuminate\Database\Eloquent\Builder中。
create()
Illuminate\Database\Eloquent\Builder
使用YourModel::create()触发Model::__callStatic()触发Model::__call()。
YourModel::create()
Model::__callStatic()
Model::__call()