@php $version = $basicInfo->theme_version; @endphp @extends("frontend.layouts.layout-v$version") @section('pageHeading') {{ $agent->username }} @endsection @section('metaKeywords') {{ $agent->username }}, {{ !request()->filled('admin') ? @$agentInfo->first_name . ' ' . @$agentInfo->last_name : '' }} @endsection @section('metaDescription') {{ !request()->filled('admin') ? @$agentInfo->details : '' }} @endsection @section('content') @includeIf('frontend.partials.breadcrumb', [ 'breadcrumb' => $bgImg->breadcrumb, 'title' => !empty($pageHeading) ? $pageHeading->agent_page_title : __('Agent'), 'subtitle' => __('Agent'), ])
@if ($agent->image != null) @else @endif
{{ $agent->username }}

{{ @$agentInfo->first_name . ' ' . @$agentInfo->last_name }}

    @if ($agent->show_phone_number == 1 && !is_null($agent->phone))
  • {{ __('Phone') . ':' }}
  • @endif @if ($agent->show_email_addresss == 1 && !is_null($agent->email))
  • {{ __('Email') . ':' }}
  • @endif @if (!is_null(@$agentInfo->city))
  • {{ __('City') . ':' }}
    {{ @$agentInfo->city }}
  • @endif @if (!is_null(@$agentInfo->state))
  • {{ __('State') . ':' }}
    {{ @$agentInfo->state }}
  • @endif @if (!is_null(@$agentInfo->country))
  • {{ __('Country') . ':' }}
    {{ @$agentInfo->country }}
  • @endif @if (!is_null(@$agentInfo->address))
  • {{ __('Address') . ' : ' }}
    {{ @$agentInfo->address }}
  • @endif
  • {{ __('Member since') . ':' }}
    {{ \Carbon\Carbon::parse($agent->created_at)->format('F Y') }}
@if ($agent->show_phone_number == 1) {{ __('Send Email') }} @endif @if ($agent->show_email_addresss == 1) {{ __('Call Now') }} @endif
@if (!is_null(@$agentInfo->details))

{{ __('About') }}

{{ @$agentInfo->details }}

@endif @if (count($all_properties) > 0)

{{ __('My Properties') . ' (' . count($all_properties) . ')' }}

@if (count($all_properties) > 0) @foreach ($all_properties as $property) @if ($property->propertyContent) @endif @endforeach @else

{{ __('No Property Found') }}

@endif
@foreach ($categories as $category)
@forelse ($all_properties as $property) @if ($property->category_id == $category->id) @endif @empty

{{ __('No Properties Found') }}

@endforelse
@endforeach
@endif
@endsection