@foreach ($listings as $listing)
@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