{{--

Properties

@if (session('success'))
{{ session('success') }}
@endif
@if ($properties->count())
@foreach ($properties as $property) @endforeach
Listing Key Type @if (request('sort_by') == 'PropertyType') @if (request('sort_direction') == 'asc') @else @endif @endif Price Beds Baths Area (sqft) Unit Number @if (request('sort_by') == 'UnitNumber') @if (request('sort_direction') == 'asc') @else @endif @endif Address City Status Agent Action
{{ $property->ListingKey }} {{ $property->PropertyType }} ${{ number_format($property->ListPrice, 2) }} {{ $property->BedroomsTotal }} {{ $property->BathroomsFull }} {{ $property->BathroomsHalf ? '½' : '' }} {{ $property->LivingArea }} {{ $property->UnitNumber }} {{ $property->StreetNumber ?? '' }} {{ $property->StreetName ?? '' }} {{ $property->StreetSuffix ? $property->StreetSuffix . ',' : '' }} {{ $property->City ? $property->City . ',' : '' }} {{ $property->StateOrProvince ?? '' }} {{ $property->PostalCode ?? '' }} {{ $property->City }} {{ $property->StandardStatus }} {{ $property->ListAgentFullName }} View
{{ $properties->appends(request()->query())->links() }}
@else

No properties found.

@endif
--}}

Properties

@if (session('success'))
{{ session('success') }}
@endif
@if ($properties->count())
@foreach ($properties as $property) @endforeach
Listing Key Type @if (request('sort_by') == 'property_type') @if (request('sort_direction') == 'asc') @else @endif @endif Price Beds Baths Area (sqft) Unit Number @if (request('sort_by') == 'unit_number') @if (request('sort_direction') == 'asc') @else @endif @endif Address City Status Agent Action
{{ $property->listing_key }} {{ $property->property_type }} ${{ number_format($property->list_price, 2) }} {{ $property->bedrooms_total }} {{ $property->bathrooms_total_integer }} {{ $property->living_area }} {{ $property->unit_number }} {{ $property->street_number ?? '' }} {{ $property->street_name ?? '' }} {{ $property->street_suffix ? $property->street_suffix . ',' : '' }} {{ $property->city ? $property->city . ',' : '' }} {{ $property->state_or_province ?? '' }} {{ $property->postal_code ?? '' }} {{ $property->city }} {{ $property->standard_status }} @if ($property->listAgent) {{ $property->listAgent->first_name }} {{ $property->listAgent->last_name }} @else N/A @endif View
{{ $properties->appends(request()->query())->links() }}
@else

No properties found.

@endif