-1

In my home controller I have

@list = Igraci.page(params[:page]).per(1)

In the index view

<%= paginate @list %>

and got this error:

undefined method 'page' for #<Class:0x235f256>
Luís Ramalho
  • 10,018
  • 4
  • 52
  • 67

1 Answers1

0

Make sure you have gem 'kaminari' in your Gemfile, that you run bundle and restarted the server.

Additionally, someone had the same issue as you, and their solution was to require kaminari in config/application.rb just before require 'rails/all'.

Luís Ramalho
  • 10,018
  • 4
  • 52
  • 67