0

我目前有一个app_instances在 MySQL 数据库中调用的表。我正在尝试使用 Laravel 4 的 ORM 从该表中检索数据。我尝试创建一个简单的模型并将数据库添加到配置中,但我收到一个错误。

模型/appInst.php

class AppInst extends Eloquent
{
    protected $table = 'app_instances';
    public $timestamps = false;

}

路由.php

Route::get('/appInst', function()
{
    $appInst = new AppInst();
    return $appInst::all();
});

我收到一条错误消息class 'AppInst' not found

4

0 回答 0