@php Theme::set('navStyle', 'light'); @endphp {!! Theme::partial('breadcrumb') !!}
{{ $account->name }}

{{ $account->name }}


{!! BaseHelper::clean($account->description) !!}

  • @php($propertiesCount = $account->properties->count()) @if($propertiesCount === 1) {{ __(':count property', ['count' => number_format($propertiesCount)]) }} @else {{ __(':count properties', ['count' => number_format($propertiesCount)]) }} @endif
  • @if($account->email)
  • @if(setting('real_estate_hide_agency_email', 0)) {{ Str::mask($account->email, '*', 4, -4) }} @else {{ $account->email }} @endif
  • @endif @if($account->phone)
  • @if(setting('real_estate_hide_agency_phone', 0)) {{ Str::mask($account->phone, '*', 3, -3) }} @else {{ $account->phone }} @endif
  • @endif
@if ($properties->count())
{{ __('Properties by this agent') }}
{!! Theme::partial('real-estate.properties.items', ['properties' => $properties]) !!}
@endif