未找到类“App\Http\Controllers\DB”,我也无法使用新模型
2022-08-30 09:48:19
我有非常基本的问题。在L4中,下面的方法开箱即用,所以现在我迷失了。请帮忙。几天前,我开始了一个Laravel 5.0项目。我现在有全新的全新安装。
问题1:当我尝试从数据库获取任何内容时
$headquote = DB::table('quotation_texts')->find(176);
我得到这个:
Class 'App\Http\Controllers\DB' not found
问题2:在我克隆User.php模型之前,将类名更改为“Quote”。以下是文件报价的内容.php放在App根文件夹中:
<?php namespace App;
use Illuminate\Database\Eloquent\Model;
class Quotation extends Model {
/**
* The database table used by the model.
*
* @var string
*/
protected $table = 'quotation_texts';
}
任何使用模型的尝试
$headquote = Quotation::find(176);
最终得到这个:
Class 'App\Http\Controllers\Quotation' not found
任何想法,我该如何解决这个问题?