{{-- A listing as a wide row: the list and split views use this. --}} @php $detail = $listing->propertyDetail; $url = $listing->publicUrl(); @endphp
{{ $listing->intent->label() }}

{{ $listing->formattedPrice() }} @if ($period = $listing->pricePeriodLabel()) {{ $period }} @endif

{{ $listing->title }}

{{ $listing->locationLabel() }}

@if ($listing->short_description)

{{ $listing->short_description }}

@endif @if ($detail)
@foreach ([ ['bed', $detail->bedrooms, __('bed')], ['bath', $detail->bathrooms, __('bath')], ['key', $detail->parking, __('parking')], ] as [$icon, $value, $label]) @if ($value)
{{ $label }}
{{ $value }} {{ $label }}
@endif @endforeach @if ($area = $detail->headlineArea())
{{ __('Area') }}
{{ number_format($area) }} {{ __('sq. ft') }}
@endif
@endif