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 Endless Garden 99
- Author names
- Martha Wells and Kim Robinson
- Genre
- Nonfiction
- Price
- 17.29 €
- Publisher
- —
- Active
- ✓
The Broken Door 100
- Author names
- Stanisław Lem
- Genre
- Nonfiction
- Price
- 26.98 €
- Publisher
- DAW
- Active
- ✓