Move Laravel 5 Eloquent models into its own directory

后端 未结 5 1263
你的背包
你的背包 2021-01-30 08:44

Laravel 5 has ORM models by default in app folder. I want to move these into app/models. When I do that then these classes are not found anymore.

How to make Laravel fin

5条回答
  •  一个人的身影
    2021-01-30 09:30

    Afer moving all files in the models folder. What you need to do is run:

    composer dump-autoload

    This worked for me. :)

提交回复
热议问题