@php $version = $basicInfo->theme_version; @endphp @extends("frontend.layouts.layout-v$version") @section('pageHeading') {{ $propertyContent->title }} @endsection @section('metaKeywords') @if ($propertyContent) {{ $propertyContent->meta_keyword }} @endif @endsection @section('metaDescription') @if ($propertyContent) {{ $propertyContent->meta_description }} @endif @endsection @section('og:tag') @endsection @section('content')

{{ $propertyContent->title }}

{{ $propertyContent->address }} {{ $propertyContent->property->city?->getContent($propertyContent->language_id)?->name }} {{ $propertyContent->property->isStateActive ? ', ' . $propertyContent->property->state?->getContent($propertyContent->language_id)?->name : '' }} {{ $propertyContent->property->isCountryActive ? ', ' . $propertyContent->property->country?->getContent($propertyContent->language_id)?->name : '' }}
  • {{ $propertyContent->area }} {{ __('Sqft') }}
  • @if ($propertyContent->type == 'residential')
  • {{ $propertyContent->beds }} {{ __('Beds') }}
  • {{ $propertyContent->bath }} {{ __('Baths') }}
  • @endif
{{ __('Price:') }} {{ $propertyContent->price ? symbolPrice($propertyContent->price) : __('Negotiable') }}
@elseif(!empty($vendor)) href="{{ route('frontend.vendor.details', ['username' => $vendor->username]) }}"> @else href="{{ route('frontend.vendor.details', ['username' => $admin->username, 'admin' => 'true']) }}"> @endif

{{ __('Property Description') }}

{!! $propertyContent->description !!}

@if (!empty(showAd(3)))
{!! showAd(3) !!}
@endif @if (count($propertyContent->propertySpacifications) > 0)

{{ __('Features') }}

@foreach ($propertyContent->propertySpacifications as $specification) @php $property_specification_content = App\Models\Property\SpacificationCotent::where([ ['property_spacification_id', $specification->id], ['language_id', $language->id], ])->first(); @endphp
{{ $property_specification_content?->label }} {{ $property_specification_content?->value }}
@endforeach
@endif @if (!empty($propertyContent->video_url))

{{ __('Video') }}

@endif @if (!empty($propertyContent->floor_planning_image))

{{ __('Floor Planning') }}

@endif @if (!empty($propertyContent->latitude) && !empty($propertyContent->longitude))

{{ __('Location') }}

@endif @if (!empty(showAd(3)))
{!! showAd(3) !!}
@endif
{{-- share on social media modal --}} @endsection