@if($property_details->title)
Title of Property :
{{ucfirst($property_details->title)}}
@endif
Type of Property :
{{ucfirst($property_details->property_type)}}
Bedrooms :
{{$property_details->bed_rooms}}
Fallen Through :
@if($property_details->fallen_through==1)Yes @else No @endif
Listed Date :
@if($property_details->listed_date)
{{date("d M Y",strtotime($property_details->listed_date))}}
@else
Hidden from public
@endif
@if($property_details->last_sold_date)
Last Sold Date :
@if(strlen($property_details->last_sold_date)<=4)
{{$property_details->last_sold_date}}
@else
{{date("d M Y",strtotime($property_details->last_sold_date))}}
@endif
@endif
@if($property_details->last_sold_price)
Last Sold price :
£{{number_format($property_details->last_sold_price)}}
@endif