我正在深入研究Laravel 5.2架构。我注意到有一些事情是某些函数没有静态方法,比如Illuminate\Database\Eloquent\Model
类中的insert,update,但我们像User::insert()
Model类中还有另一个函数performInsert()
。 Laravel如何在示例中调用performInsert(),如User :: insert($ data)
我已在documentation中了解过外墙。但是在文档中写道,类必须使用Illuminate\Support\Facades\Facade
扩展,但Model类也不会使用Facade扩展。有什么帮助吗?
怎么做?