在 Laravel 5.2 删除Role模型时报错 :FatalErrorException in Model.php line 956
解决方法:
Replace
Line 46: ... Config::get('auth.model') ...
with
Line 46: ... Config::get('auth.providers.users.model') ...
即可解决。
转自原文:https://github.com/Zizaco/entrust/issues/472