{{ $property->type }}
@if($property->status === 'available')
Available
@elseif($property->status === 'rented')
Rented
@else
{{ ucfirst($property->status) }}
@endif
{{ $property->title }}
{{ $property->address }}, {{ $property->city }}{{ $property->country ? ', '.$property->country : '' }}
@if($property->description){{ Str::limit(strip_tags($property->description), 120) }}
@endif
@if($property->bedrooms !== null)
{{ $property->bedrooms }} bed
@endif
@if($property->bathrooms !== null)
{{ $property->bathrooms }} bath
@endif
@if($property->area)
{{ number_format($property->area, 0) }} {{ $property->area_unit ?: 'm²' }}
@endif
Price
{{ number_format($property->price, 0) }} {{ $property->currency }}