@if ($property->content || $property->private_notes)
@if($property->content)
{{ __('Description') }}
{!! BaseHelper::clean($property->content) !!}
@endif @if($property->can_see_private_notes && $property->private_notes)
{{ __('Private Notes') }}
{!! BaseHelper::clean(nl2br($property->private_notes)) !!}
@endif
@endif
{{ __('Overview') }}
{{ __('Property ID:') }} {{ $property->unique_id ?: $property->getKey() }}
@if($property->categories->isNotEmpty())
{{ __('Type:') }} {{ collect($property->categories)->pluck('name')->implode(', ') }}
@endif @if ($property->number_bedroom)
{{ __('Bedrooms:') }} {{ number_format($property->number_bedroom) }}
@endif @if ($property->number_bathroom)
{{ __('Bathrooms:') }} {{ number_format($property->number_bathroom) }}
@endif @if ($property->number_floor)
{{ __('Floors:') }} {{ number_format($property->number_floor) }}
@endif @if ($property->square)
{{ __('Square:') }} {{ $property->square_text }}
@endif
{{ __('Price:') }} {{ $property->price_html }}
@php $customLabels = [ 'is_verified' => 'Is Verified', 'is_rega_prop' => 'REGA Property', 'is_updated' => 'Is Updated', 'verification_status' => 'Verification Status', 'street_info' => 'Street Info', 'compound_details' => 'Compound Details', 'monthly_rent_emi' => 'Monthly Rent EMI', 'rize_monthly_rentemi' => 'Rize Monthly Rent EMI', 'price_valuation' => 'Price Valuation', 'property_relevance_listing_complete' => 'Listing Completeness', 'property_relevance_engagement' => 'Engagement', 'property_relevance_seller_score' => 'Seller Score', 'property_relevance_freshness' => 'Freshness', 'property_relevance_deficit' => 'Deficit', 'property_relevance_persona' => 'Persona Match', 'property_relevance_recency' => 'Recency', 'total_score' => 'Total Score', 'property_sub_type' => 'Property Sub Type', 'furnishing_type' => 'Furnishing Type', 'facing_type' => 'Facing Type', 'unit_type' => 'Unit Type', 'possession_type' => 'Possession Type', 'territory' => 'Territory', 'tags' => 'Tags', 'sale_price' => 'Sale Price', 'expected_rent' => 'Expected Rent', 'conversion_unit' => 'Conversion Unit', 'contact_details' => 'Contact Details', 'other_charges' => 'Other Charges', 'expected_rent_type' => 'Expected Rent Type', 'expected_monthly_rent_type' => 'Expected Monthly Rent Type', 'property_sub_type_slug' => 'Property Sub Type Slug', 'alternate_slug' => 'Alternate Slug', 'rent_freq' => 'Rent Frequency', 'property_main_type_slug' => 'Property Main Type Slug', 'rega_guarantee_duration' => 'REGA Guarantee Duration', 'average_sale_price_lower_percentage' => 'Average Sale Price Lower Percentage', 'is_approx_location' => 'Is Approximate Location', 'is_auction' => 'Is Auction Property', 'reservation' => 'Reservation', 'roi_prediction' => 'ROI Prediction', 'score' => 'Score', 'full_dar_reference' => 'Full DAR Reference', 'prop_identity_type_id' => 'Property Identity Type ID', 'rega_moj_desc' => 'REGA MOJ Description', 'package_data' => 'Package Data', 'dar_reference' => 'DAR Reference', 'zip_code' => 'Zip Code', 'lead_count' => 'Lead Count', 'floor_size' => 'Floor Size', 'age_of_listing' => 'Age of Listing', ]; @endphp @foreach ($property->customFields as $customField) @continue(! $customField->value)
{!! BaseHelper::clean($customLabels[$customField->name] ?? $customField->name) !!}: {!! BaseHelper::clean($customField->value) !!}
@endforeach
{{ __('REGA Information') }}

{{ __('REGA Ad License No:') }}

{{ isset($api_other_info_data) ? $api_other_info_data['rega_adv_lic_no'] : '' }} @if (isset($api_other_info_data) && $api_other_info_data['license_expired'] == 1) Active @else Deactive @endif

Expiring on: @if(isset($api_other_info_data) && $api_other_info_data['fal_expiry_date'] != '') @php echo date('d/m/Y', strtotime($api_other_info_data['fal_expiry_date'])); @endphp @else - @endif

@php use SimpleSoftwareIO\QrCode\Facades\QrCode; @endphp @if(isset($api_other_info_data) && !empty($api_other_info_data['fal_license_url'])) @php $fal_license_url = $api_other_info_data['fal_license_url']; $qrCode = QrCode::size(109)->generate($fal_license_url); @endphp
{!! $qrCode !!}
Click to go to URL @endif