class PortalImage < ApplicationRecord
  belongs_to :laboratory

  scope :only_online, -> { where(status: true) }

  def online?
    status?
  end
end