我正在开发一个laravel项目,并希望从服务器(postgresql)检索数据。我在我的Model文件夹中有类webmaster_tool,但每次我尝试用Eloquent调用它时都会收到此错误:
Symfony \ Component \ Debug \ Exception \ FatalErrorException(E_ERROR) Class' webmasters_tool'找不到
这是我的控制器:
<?php
/*Controller*/
class WebmastersController extends BaseController {
public function index() {
$webmasters_tools = webmasters_tool::all();
return View::make('webmasters_tools.index', ['webmasters_tools' => $webmasters_tools]);
}
}
我的模特:
<?php
//Modell
class webmasters_tool extends Eloquent {
}
我的路线:
Route::get('/webmasters_tools', 'WebmastersController@index');
如果有人帮助我,我真的很感激。
答案 0 :(得分:0)
可能你错过了使用声明:
use App\webmasters_tool;