Laravel 8, Model factory class not found

前端 未结 6 1438
孤街浪徒
孤街浪徒 2021-01-17 16:47

so when using the new model factories class introduced in laravel 8.x, ive this weird issue saying that laravel cannot find the factory that corresponds to the model. i get

6条回答
  •  失恋的感觉
    2021-01-17 17:17

    Apparently you have to respect the folder structure as well. For example, if you have the User Model in the following path: app\Models\Users\User, then the respective factory should be located in database\factories\Users\UserFactory.

提交回复
热议问题