Pagination
How this page is built
the gem renders it — this is all you write
Pagination works in a custom layout too. You still paginate in the controller (kaminari); the cards layout feeds collection.page_scope to kaminari's own paginate helper, so the pager below is kaminari's default markup — styling it is your job, as always with kaminari.
app/controllers/books_controller.rb
@query = CrudComponents::Query.new(Book, params, fieldset: :index, ability: current_ability)
@books = @query.apply(Book.all).page(params[:page]).per(8) # kaminari
app/views/crud_components/layouts/_cards.html.erb
<%= paginate collection.page_scope %> <%# kaminari's own pager, inside your card layout %>
app/views/pagination/index.html.erb
<%= crud_collection @books, query: @query, layout: :cards %>
Read more: Pagination · Add a layout
The Burning City 27
- Author names
- Ann Leckie
- Genre
- Nonfiction
- Price
- 29.92 €
- Publisher
- DAW
- Active
- ✓
The Silent Door 29
- Author names
- Iain Banks
- Genre
- Nonfiction
- Price
- 38.24 €
- Publisher
- DAW
- Active
- ✓
The Endless Tower 30
- Author names
- Liu Cixin, Ted Chiang, and Becky Chambers
- Genre
- Nonfiction
- Price
- 38.98 €
- Publisher
- Baen
- Active
- ✓