本文介绍了找不到碳/碳类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我最近在我的Laravel 4网站上添加了一个软件包,现在任何使用Eloquent(或至少Eloquent引用日期/时间的信息)都显示500错误,指出:
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:
Class 'Carbon\Carbon' Not Found.
我尝试跑步
composer install
composer update
composer dump-autoload
推荐答案
当然,这不是对您有用的步骤,但是当问题不在源代码上时,这些步骤通常可以解决Laravel问题:
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
这篇关于找不到碳/碳类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!