Class Carbon\Carbon not found

后端 未结 8 1281
无人及你
无人及你 2020-12-24 12:17

I recently added a package to my Laravel 4 site and now anything that uses Eloquent (or at least Eloquent with any reference to date/time) is showing a 500 error that states

8条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-24 12:44

    Not saying this is work for you, but those are steps that usually fix Laravel, when the problem is not on your source code, of course:

    cd /your/application/dir
    
    rm bootstrap/compiled.php
    
    rm -rf vendor
    
    composer install --no-dev
    

提交回复
热议问题