class ActiveStorage::Attached::Many

def attached?

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

end
has_many_attached :photos
class Gallery < ActiveRecord::Base

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