Laravel migrations: Class “not found”

前端 未结 16 1526
自闭症患者
自闭症患者 2020-12-12 14:38

I am deploying a Laravel barebone project to Microsoft Azure, but whenever I try to execute php artisan migrate I get the error:

[2015-06-13

16条回答
  •  萌比男神i
    2020-12-12 15:21

    If you get the "Class not found error" when running migrations, please try running this command.

    composer dump-autoload 
    

    then re-issuing the migrate command. See more details in the offical site (#Running Migrations): http://laravel.com/docs/master/migrations#running-migrations

提交回复
热议问题