method

find_last

find_last()
protected

No documentation available.

# File activerecord/lib/active_record/relation/finder_methods.rb, line 345
    def find_last
      if loaded?
        @records.last
      else
        @last ||= reverse_order.limit(1).to_a[0]
      end
    end