Flat Number
{{ $flat->flat_number }}
Status
{{ ucfirst($flat->status) }}
Type
{{ $flat->flat_type }}
Building
{{ $flat->building->building_name ?? '—' }}
Floor
{{ $flat->floor_number ? 'Floor ' . $flat->floor_number : '—' }}
Size
{{ number_format($flat->flat_size, 0) }}
{{ strtoupper($flat->size_unit ?? 'sft') }}
Price
{{ env('CURRENCY_SYMBOL', '৳') }}
{{ number_format($flat->flat_price, 0) }}
Per Unit Price
{{ $flat->per_unit_price ? env('CURRENCY_SYMBOL', '৳') . ' ' . number_format($flat->per_unit_price, 0) : '—' }}
Facing
{{ str_replace('_', ' ', $flat->facing ?? '—') }}
@if($flat->description)
Description
{{ $flat->description }}
@endif