@extends('site_app') @section('head_title', get_user_info($owner_id,'name').' - '.trans('words.property_text').' - '.getcong('site_name') ) @section('head_url', Request::url()) @section('content') @if(get_web_banner('list_top')!="")
{!!stripslashes(get_web_banner('list_top'))!!}
@endif
@if(file_exists(URL::to('upload/'.get_user_info($owner_id,'user_image')))) user @else user @endif

{{get_user_info($owner_id,'name')}}

  • Phone: {{get_user_info($owner_id,'phone')}}
  • Email: {{get_user_info($owner_id,'email')}}

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

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

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

    @if(check_favourite("Property",$property_data->id,isset(Auth::user()->id)?Auth::user()->id:""))
  • @else
  • @endif

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

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

@endforeach
@include('_particles.pagination', ['paginator' => $property_list])
@if(get_web_banner('list_bottom')!="")
{!!stripslashes(get_web_banner('list_bottom'))!!}
@endif
@include("pages.sidebar_right")
@endsection