在使用laravel 5.1权限管理,使用  安装 zizaco/entrust 5.2.x-dev的时候执行 php artisan entrust:migration的时候报以下错误:


[Symfony\Component\Debug\Exception\FatalErrorException]
  Class name must be a valid object or a string

[HOOLOO] zizaco/entrust 5.2.x-dev Class name must be a valid object or a string

 


解决办法:

\vendor\zizaco\entrust\src\commands\MigrationCommand.php文件中第84行。

 

get'auth.providers.users.table';
get'auth.providers.users.model';

 

改为

 

get'auth.table';
get'auth.model';

 

 

即可。


此方法仅对 laravle 5.1 。

相关文章:

  • 2022-12-23
  • 2021-06-14
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-08
  • 2022-12-23
猜你喜欢
  • 2022-01-12
  • 2021-07-15
  • 2022-12-23
  • 2021-05-05
  • 2021-10-16
  • 2022-12-23
相关资源
相似解决方案