Laravel migrations: Class “not found”

前端 未结 16 1445
自闭症患者
自闭症患者 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条回答
  •  一整个雨季
    2020-12-12 15:40

    I was receiving the same class not found error when trying to migrate my project. Sometimes it is the simple things that get you. In my case, I noticed that my class name was not correct in my migration file due to me making a rename change early on and not carrying that change throughout.

    After correcting the class name I performed a composer dump-autoload and my issue went away.

    HTH someone :]

提交回复
热议问题