Class '\App\User' not found in Laravel when changing the namespace

前端 未结 15 2737
面向向阳花
面向向阳花 2020-12-13 13:23

I am having this error when moving User.php to Models/User.php

local.ERROR: Symfony\\Component\\Debug\\Exception\\FatalThrow

15条回答
  •  轮回少年
    2020-12-13 13:55

    If the app config is cached, it may not be able to get the new configuration, because config:cache gives this error before clearing and caching configuration, so just delete the cache manually:

    rm bootstrap/cache/config.php
    

提交回复
热议问题