@extends('layouts.app') @section('contentSection')

{{ number_format($pros->total()) }} Results Found

@if ($pros->total() > 0)
  • Sort by:
@endif
@foreach ($pros as $listing)
{{ $listing->title }}
    @if ($listing->sale_status)
  • {{ $listing->sale_status->name }}
  • @endif @if ($listing->is_featured == 1)
  • Featured
  • @endif @if ($listing->cheque)
  • {{$listing->cheque->name}}
  • @endif

{!! $listing->title !!}

    @if ($listing->property_type)
  • {{ $listing->property_type->name }}
  • @endif @if ($listing->beds)
  • {{ $listing->beds }}
  • @endif @if ($listing->baths)
  • {{ $listing->baths }}
  • @endif @if ($listing->area)
  • Area: {{ number_format($listing->area) }}{{ $listing->max_area ? '-' . number_format($listing->max_area) : '' }} sqft
  • @endif
@if ($listing->getHK())

{{ $listing->getHK() }}

@endif
@endforeach
@if ($pros->hasMorePages())
@endif
@endsection @section('pageSpecificScripts') @endsection