@extends('site_app') @section('head_title', stripslashes($property_info->title).' - '.getcong('site_name') ) @section('head_description', Str::limit(stripslashes($property_info->description),160)) @section('head_image', URL::to('/'.$property_info->image)) @section('head_url', Request::url()) @section('content')
@if(get_web_banner('details_top')!="")
{!!stripslashes(get_web_banner('details_top'))!!}
@endif
slide

{{stripslashes($property_info->title)}} @if($property_info->purpose=='Rent') {{trans('words.rent')}} @else {{trans('words.sale')}} @endif @if($property_info->verified=='YES') @endif

@if(get_location_info($property_info->location_id,'name')!="") {{get_location_info($property_info->location_id,'name')}} @else {{stripslashes($property_info->address)}} @endif

{{html_entity_decode(getCurrencySymbols(getcong('currency_code')))}}{{number_format($property_info->price)}}

{{trans('words.property_info')}}

{!!stripslashes($property_info->description)!!}

{{trans('words.address')}} : {{stripslashes($property_info->address)}}

{{trans('words.location')}}

{{trans('words.property_details')}}

  • {{trans('words.type')}} : {{get_type_info($property_info->type_id,'type_name')}}
  • {{trans('words.purpose')}} : {{$property_info->purpose}}
  • {{trans('words.bedrooms')}}: {{$property_info->bedrooms}}
  • {{trans('words.bathrooms')}}: {{$property_info->bathrooms}}
  • {{trans('words.area')}}: {{$property_info->area}}
  • {{trans('words.furnishing')}}: {{$property_info->furnishing}}
@if($property_info->amenities)

{{trans('words.amenities')}}

    @foreach(explode(',',$property_info->amenities) as $amenities)
  • {{$amenities}}
  • @endforeach
@endif @if($property_info->floor_plan_image)

{{trans('words.floor_plan_image')}}

@endif
@include("pages.sidebar_right")

{{trans('words.similar_properties')}}

@foreach($related_list as $related)
image
    @if($related->purpose=='Rent')
  • {{trans('words.rent')}}
  • @else
  • {{trans('words.sale')}}
  • @endif @if($related->verified=='YES')
  • @endif

{{get_type_info($related->type_id,'type_name')}}

  • @if(check_favourite("Property",$related->id,isset(Auth::user()->id)?Auth::user()->id:"")) @else @endif
@endforeach
@if(get_web_banner('details_bottom')!="")
{!!stripslashes(get_web_banner('details_bottom'))!!}
@endif
@endsection