samedi 4 avril 2020

Laravel: Paginating In Blade

In my blade, I have:

<?php $items = $collection->paginate(10); dd($collection->paginate(10)); ?>

The dd() logs as:

array:6 [▼
  "page_size" => 10
  "current_page" => 1
  "current_offset" => 0
  "pages" => 2.0
  "items" => 19
  "next" => array:2 [▶]
]

I try to then render in the blade to show a page counter at the bottom and I get the error Call to a member function links() on array



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire