class ActiveStorage::Attached::Many

def attached?

Gallery.new.photos.attached? # => false

end
has_many_attached :photos
class Gallery < ApplicationRecord

Returns true if any attachments have been made.
def attached?
  attachments.any?
end