@extends('layouts.guest') @section('content')

Search Results ({{ $properties->total() }})

@if($properties->count())
@foreach($properties as $project) @if($project->listing_type === 'rent') @else @endif
@if($project->listing_status) {{ ucwords(str_replace(['-', '_'], ' ', $project->listing_status)) }} @endif @if($project->listing_type) {{ ucfirst($project->listing_type) }} @endif @if($project->category) {{ ucwords(str_replace(['-', '_'], ' ', $project->category)) }} @endif
{{ $project->name }}
{{ $project->location ?? $project->address ?? '' }}, {{ $project->city }}, {{ $project->state }}
{{ $project->configurations }}
{{ formatPrice($project->min_price) }}
@endforeach
{{ $properties->appends(request()->query())->links() }}
@else

No properties found matching your search criteria.

@endif
@endsection