@extends('site_app') @section('head_title', trans('words.favourite_properties').' | '.getcong('site_name') ) @section('head_url', Request::url()) @section('content')
@foreach($favourites_list as $favourites) @php $post_id=$favourites->post_id; $property_info= \App\Property::find($post_id); @endphp
image
    @if($property_info->purpose=='Rent')
  • {{trans('words.rent')}}
  • @else
  • {{trans('words.sale')}}
  • @endif

{{ $property_info->types->type_name }}

{{stripslashes($property_info->title)}}

@if(isset($property_info->locations->name) AND $property_info->locations->name!="") {{$property_info->locations->name}} @else {{Str::limit(stripslashes($property_info->address),40)}} @endif

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