{{ $property->title ?? $property->propertyContent->title }}

{{ $property->city->getContent($property->language_id)?->name }} {{ $property->isStateActive ? ', ' . $property->state?->getContent($property->language_id)?->name : '' }} {{ $property->isCountryActive ? ', ' . $property->country?->getContent($property->language_id)?->name : '' }} @if($property->price)
{{ __('Price:') }} {{ symbolPrice($property->price) . ($property->max_price ? ' - ' . symbolPrice($property->max_price) : '') }}
@endif
    @if($property->area)
  • {{ $property->area . ($property->max_area ? ' - ' . $property->max_area : '') }} {{ __('Sqft') }}
  • @endif @if($property->area_sqyd)
  • {{ $property->area_sqyd . ($property->max_area_sqyd ? ' - ' . $property->max_area_sqyd : '') }} {{ __('Sqyd') }}
  • @endif @if ($property->type == 'residential' && $property->bhk)
  • {{ $property->bhk }} {{ __('BHK') }}
  • {{--
  • {{ $property->bath }} {{ __('Baths') }}
  • --}} @endif
@if($property->property_status == 2 && $property->possession_date)

Possession Starts: {{ Carbon\Carbon::parse($property->possession_date)->format('M, Y') }}

@endif
@if($property->property_status) {{ collect(getPropertyStatus())->where('value', $property->property_status)->value('title') ?? '' }} @endif @if (Auth::guard('web')->check()) @php $user_id = Auth::guard('web')->user()->id; $checkWishList = checkWishList($property->id, $user_id); @endphp @else @php $checkWishList = false; @endphp @endif