@extends('admin.layouts.master') @section('title', __('ticket::static.report.reports')) @section('content')
@php $imageUrl = getMedia($executive?->Profile_image_id)?->original_url; @endphp
@if ($imageUrl) @else
{{ strtoupper($executive?->name[0]) }}
@endif

{{ $executive?->name }}

{{ $executive?->ratings?->avg('rating') ? number_format($executive->ratings->avg('rating'), 1) : 'Unrated' }}

{{ ucfirst($executive?->role->name) }}

{{ __('ticket::static.report.user_detail') }}

  • {{ __('ticket::static.report.name') }}
    {{ $executive?->name }}
  • {{ __('ticket::static.report.role') }}
    {{ ucfirst($executive?->role?->name) }}
  • {{ __('ticket::static.report.email') }}
    {{ $executive?->email }}
  • {{ __('ticket::static.report.phone') }}
    @if ($executive?->phone) + ({{ $executive?->country_code }}) {{ $executive?->phone }} @else - @endif

{{ __('ticket::static.report.reports') }}

@endsection