Laravel 5: DB Seed class not found

前端 未结 7 812
孤独总比滥情好
孤独总比滥情好 2021-02-03 21:15

I have this DatabaseSeeder.php:



        
7条回答
  •  一整个雨季
    2021-02-03 22:04

    You should include namespace if you want to use a string as a parameter

     $this->call('Database\Seeders\MemberInvitationSeeder');
    

提交回复
热议问题