我是 Laravel 的新手。如果这个问题听起来很幼稚,请原谅。
我有一个模型
class Config extends Eloquent {
public static $table = 'configs';
}
控制器就像
class UserController extends BaseController {
Public function getIndex ()
{
$config_items = Config::all ();
var_dump ( $config_items );
return View::make ( 'user.userindex' )
-> with ( 'title', 'User Page' );
}
}
但是当我尝试访问 Config 模型时,我收到了错误:
Symfony \ Component \ Debug \ Exception \ FatalErrorException 调用未定义的方法 Illuminate\Config\Repository::all()
请帮忙!
我知道这个问题可以帮助许多像我和我的同事这样的 Laravel 4 新手,所以请帮忙!