@extends('layouts.user') @section('title', 'Properties') @php use Illuminate\Support\Str; @endphp @section('content')

Real Estate

Featured properties

Browse opportunities curated for the community.

Wallet balance ${{ number_format($walletSummary['total_usd'] ?? 0, 2) }}
@forelse($properties as $property)

{{ $property->title }}

{{ $property->location ?? 'Location TBD' }}

${{ number_format($property->price, 2) }}
{{ $property->bedrooms ?? '—' }} bd {{ $property->bathrooms ?? '—' }} ba {{ $property->area_sqft ? number_format($property->area_sqft) . ' sqft' : '—' }} {{ ucfirst($property->status) }}
@if($property->description)

{{ Str::limit($property->description, 140) }}

@endif @if(is_array($property->gallery_images) && count($property->gallery_images))
@foreach(array_slice($property->gallery_images, 0, 3) as $img)
@endforeach
@endif
Deposit
@empty
No properties available yet.
@endforelse
@endsection @section('styles') @endsection @push('scripts') @endpush