#1096·kaminari

paginate view helper is failing with includes

Author: maxrosecollinsCreated Aug 11, 2022Updated Aug 26, 2024
LabelsFeedback NeededActiveRecord

The pagination works technically, but when I try to show the view helper, it doesn't return any code.

I can navigate via the url using ?page=2 but the pagination links aren't showing.

Controller:

@orders = Order.page(params[:page]).per(2).includes(:user).references(:user)

View:
<%= paginate @orders %>