class ArtsController < ApplicationController def index @weather_arts = WeatherArt.includes(:city, city: [ :country, { country: :region } ]) .order(created_at: :desc) .page(params[:page]) .per(2) end end