on my category show, i cycle through my has many through relationship
@categories.businesses.each do .....
to list all business in a category.
how do i add
@category.businesses.paginate :page => params[:page], :order => 'name', :per_page => 10
so that the businesses for each category are pagiated.
Do i need to add that to the show def?