Move Laravel 5 Eloquent models into its own directory

后端 未结 5 1315
你的背包
你的背包 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:25

    Add "app/models" to composer.json's classmap autoload section

    "autoload": {
        "classmap": [
            "database",
            "app/models"
        ]
    }
    

提交回复
热议问题