I am working on rails 4
and this are my steps:-
gem kaminari
--in gemfile- bundle install
@vendors = Vendor.order(:name).page params[:page]
invendor_controller.rb)
also tried@vendors=Vendor.order("name").page(params[:page]).per(5)
<% = paginate @vendors %>
inindex.html.erb
Error:-
undefined method `page' for #<ActiveRecord::Relation::ActiveRecord_Relation_Vendor:0x16bec10>
I have also tried in console
Vendor.count
a = Vendor.limit(5).count
b = a.page(1).per(20).size
Error:-
NOmethoderror undefined method 'page'
question:- Where i am going wrong .?
Thanks