@extends('layouts.front') @push('css') @endpush @section('content')

{{ $agent->name }}


{{ $agent->address }}

{{ $agent->details }}

@lang('Agent Info')

  • @lang('Ceo'){{ $agent->name}}
  • @lang('Email'){{ $agent->email }}
  • @lang('Phone'){{ $agent->phone != NULL ? $agent->phone : 'N/A' }}
  • @lang('Skype'){{ $agent->skype_name != NULL ? $agent->skype_name : 'N/A' }}
  • @lang('Address'){{ $agent->address != NULL ? $agent->address : 'N/A' }}
  • @lang('City'){{ $agent->city != NULL ? $agent->city : 'N/A' }}
  • @lang('Country'){{ $agent->country != NULL ? $agent->country->name : 'N/A'}}
  • @lang('Stab.'){{ $agent->created_at->format('Y')}}
@if (count($rent_properties)>0) @foreach ($rent_properties as $key => $data)
id() }}>
@if ($data->reviews->count()>0)
@php $review = $data->reviews->sum('rate')/$data->reviews->count(); @endphp @for ($i = 1; $i <= $review; $i++) @endfor @if (is_float($review)) @endif
@endif @lang('For Rent')

{{ $data->name }}

{{ $data->real_address }}
  • @lang('Bed'):{{ $data->bed }}
  • @lang('Bath'):{{ $data->bathroom }}
  • @lang('Sqft'):{{ $data->square }}
@endforeach @else

@lang('No Property Found!')

@endif
@if($rent_properties->hasPages()) {{ $rent_properties->links() }} @endif
@if (count($buy_properties)>0) @foreach ($buy_properties as $key => $data)
id() }}>
@if ($data->reviews->count()>0)
@php $review = $data->reviews->sum('rate')/$data->reviews->count(); @endphp @for ($i = 1; $i <= $review; $i++) @endfor @if (is_float($review)) @endif
@endif @lang('For Sell')

{{ $data->name }}

{{ $data->real_address }}
  • @lang('Bed'):{{ $data->bed }}
  • @lang('Bath'):{{ $data->bathroom }}
  • @lang('Sqft'):{{ $data->square }}
@endforeach @else

@lang('No Property Found!')

@endif
@if($buy_properties->hasPages()) {{ $buy_properties->links() }} @endif

{{ $agent->name }}

{{ $agent->phone }}
@csrf
@if (count($featured_properties)>0) @endif
@endsection @push('js') @endpush