Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Laravel 5.3パスポートモデルをオーバーライドして、Vinelab\NeoEloquent\Eloquent\Model代わりに使用する簡単な方法はありますか?Illuminate\Database\Eloquent\Model
Vinelab\NeoEloquent\Eloquent\Model
Illuminate\Database\Eloquent\Model
registerメソッドでサービスプロバイダーにバインドしてみてください:
register
public function register() { $this->app->bind(\Illuminate\Database\Eloquent\Model::class, \Vinelab\NeoEloquent\Eloquent\Model::class) }