Laravel migrations: Class “not found”

前端 未结 16 1524
自闭症患者
自闭症患者 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:24

    Simply make sure your migration filename is the same as your class name.

    i.e:

    If filename is:

    xxx_151955_create_post_translations_table.php

    Then class should be:

    CreatePostTranslationsTable

提交回复
热议问题