我正在使用laravel 4.2,出于某种原因,我需要访问我视图中失败的lastPage
属性。这是分页时控制器的代码。
$products = Product::where('status', '=', 'available')->paginate(20);
以下是我的视图文件中var_dump($products)
的一部分,我需要知道如何以正确的方式访问它。
protected 'total' => int 10491
protected 'hasMore' => null
protected 'perPage' => int 20
protected 'currentPage' => int 1
protected 'lastPage' => int 525
protected 'from' => int 1
protected 'to' => int 20