【发布时间】:2014-04-29 05:08:48
【问题描述】:
在产品模型中
public function getPaginatedAttribute()
{
$posts = $this->posts;
return \Paginator::make($posts, $posts->count(), 10);
}
在控制器中调用时
$product = Product::with('categories')->paginated();
总是出错
Call to undefined method Illuminate\Database\Query\Builder::paginated();
【问题讨论】: