Sha256: 8fb7467684448d70b4b80e8a7f4670699948eed730489dee4688224103f5887f

Contents?: true

Size: 937 Bytes

Versions: 4

Compression:

Stored size: 937 Bytes

Contents

module PhcdevworksRealEstate
  class Property::Listing < ApplicationRecord

    # Clean URL Initialize
    extend FriendlyId

    # Image Uploading
    has_one_attached :listing_upload
    has_many_attached :gallery_upload

    # Relationships
    has_and_belongs_to_many :features, class_name: 'Phcreallistingspro::Property::Feature', :join_table => 'phcdevworks_real_estate_property_features_listings', :dependent => :destroy

    # Validation for Form Fields
    validates :property_listing_title,
      presence: true

    validates :property_listing_description,
      presence: true

    validates :property_listing_street_address,
      presence: true

    validates :property_listing_price,
      presence: true

    # Clean URL Define
    friendly_id :property_listing_nice_urls, use: [:slugged, :finders]

    def property_listing_nice_urls
      [:property_listing_title]
    end

  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
phcdevworks_real_estate-6.0.2 app/models/phcdevworks_real_estate/property/listing.rb
phcdevworks_real_estate-6.0.1 app/models/phcdevworks_real_estate/property/listing.rb
phcdevworks_real_estate-6.0.0 app/models/phcdevworks_real_estate/property/listing.rb
phcdevworks_real_estate-5.2.0 app/models/phcdevworks_real_estate/property/listing.rb