Laravel 5: DB Seed class not found

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

I have this DatabaseSeeder.php:



        
7条回答
  •  梦谈多话
    2021-02-03 21:59

    Step one - generate seed:

    php artisan make:seed MemberInvitationSeeder
    

    Step two - In DatabaseSeeder.php add line:

    $this->call(MemberInvitationSeeder::class);
    

    Step three:

    composer dump-autoload
    

    Step four:

    php artisan db:seed
    

    This should work


    If this isn't the clue, check the composer.json file and make sure you have code below in the "autoload" section:

    "classmap": [
        "database"
    ],
    

提交回复
热议问题