Laravel 5 Migrate Base table or view not found: 1146

前端 未结 12 605
情话喂你
情话喂你 2020-12-11 01:06

I am in big problem. I am trying to rum php artisan migrate to generate table migration, but i am getting

[2016-03-08 05:49:01] local.ERR

12条回答
  •  不思量自难忘°
    2020-12-11 02:02

    It worked for me, see more here:

    https://stackoverflow.com/a/49300262/5129122

        try {
    
            return Permission::with('role')->get();
    
        } catch (\Exception $e) {
    
            return [];
    
        }
    

提交回复
热议问题