@extends('site_app') @section('head_title', trans('words.my_properties').' | '.getcong('site_name') ) @section('head_url', Request::url()) @section('content')
@foreach($property_list as $property_data)
...
    @if($property_data->purpose=='Rent')
  • {{trans('words.rent')}}
  • @else
  • {{trans('words.sale')}}
  • @endif

{{ $property_data->types->type_name }}

@if($property_data->status==1)

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

@else

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

@endif

{{ Str::limit(stripslashes($property_data->title),25) }}

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

{{html_entity_decode(getCurrencySymbols(getcong('currency_code')))}}{{number_format($property_data->price)}}
@if(strtotime(date('m/d/Y')) < Auth::User()->exp_date) @if($property_data->status==1) @else @endif @endif
@endforeach
@include('_particles.pagination', ['paginator' => $property_list])
@endsection