1 2 3 4 5 6 7
class RecordsController < ApplicationController def index @records = Record.order(created_at: :desc).limit(20) end end