@extends('landing-page.layouts.default') @section('content')
image
provider
{{ $handymanData['data']['display_name'] }}
@php $handymanDocuments = $handymanData['document_detail'] ?? null; $verifiedDisplayed = false; // Boolean flag to check if the verified icon has been displayed @endphp @if ($handymanDocuments) @foreach ($handymanDocuments as $document) @if (isset($document['is_verified']) && $document['is_verified'] && !$verifiedDisplayed) @php $verifiedDisplayed = true; // Set the flag to true after displaying the icon @endphp @endif @endforeach @endif
{{ $handymanData['data']['handyman_rating'] }} ({{ $total_handyman_rating }} {{__('messages.reviews')}})
@if(isset($why_choose_me)) @endif
{{__('auth.email')}}:
{{ $handymanData['data']['email'] }}
{{__('landingpage.projects')}}:
{{ $completed_services }} {{__('landingpage.project_completed')}}
{{__('messages.customer')}}:
{{ $satisfy_customers }} {{__('landingpage.satisfy_customers')}}

{{__('landingpage.handyman_personal_info')}}

{{ $handymanData['data']['description'] }}

@if(!empty($handymanData['data']['known_languages'])) @endif
{{__('landingpage.member_since')}}
{{ date("$datetime->date_format", strtotime($handymanData['data']['created_at'] )) }}
{{__('landingpage.languages')}}
{{ implode(', ', json_decode($handymanData['data']['known_languages'])) }}

{{ $total_handyman_rating }} {{__('landingpage.reviews_for')}} {{$handymanData['data']['display_name']}}

@if($total_handyman_rating !== 0) @endif
    @php $counter=1; @endphp @foreach($handyman_rating as $ratingData) @if($counter <= 10)
  • comment-user
    {{ date("$datetime->date_format", strtotime($ratingData['created_at'])) }}

    {{ $ratingData['review'] }}

  • @endif @php $counter++; @endphp @endforeach
@endsection