如何从结果集中访问受保护的lastPage属性

时间:2015-11-04 04:25:26

标签: php laravel laravel-4 pagination

我正在使用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

1 个答案:

答案 0 :(得分:1)

对不起,我应该在下面回答。

您希望使用不受保护的方法->getLastPage()来访问该受保护的方法。

您可以查看documentation here