@extends('layouts.adminmaster') @section('styles') @endsection @section('content')
{{$users->name}}
{{$users->email}}
@if(!empty($users->getRoleNames()[0]))
{{ $users->getRoleNames()[0]}}
@endif

{{lang('Personal Details')}}

{{lang('Employee ID')}} {{$users->empid}}
{{lang('Name')}} {{$users->name}}
{{lang('Role Name')}} @if(!empty($users->getRoleNames()[0])) {{$users->getRoleNames()[0]}} @endif
{{lang('Email')}} {{$users->email}}
{{lang('Phone')}} {{$users->phone}}
{{lang('Languages')}} @php $values = explode(",", $users->languagues); @endphp
    @foreach ($values as $value)
  • {{ucfirst($value)}}
  • @endforeach
{{lang('Skills')}} @php $values = explode(",", $users->skills); @endphp
    @foreach ($values as $value)
  • {{ucfirst($value)}}
  • @endforeach
{{lang('Location')}} {{$users->country}}

{{lang('Livechat Operator View Reports')}}

@php $i = 1; @endphp @foreach($reviewsData as $review) @endforeach
{{lang('Sl.No')}} {{lang('Rating')}} {{lang('problem Rectifiedt')}} {{lang('Feed Back Data')}} {{lang('Actions')}}
{{$i++}}
@for($startIcon = 0; $startIcon < intval($review->starRating) ; $startIcon++) @endfor @for($startIcon = 0; $startIcon < intval(5-$review->starRating) ; $startIcon++) @endfor
{{$review->problemRectified}} {{$review->feedBackData}}
@php $customer = \App\Models\LiveChatCustomers::find($review->cust_id); if($customer->status == 'solved'){ $route = route('admin.solvedChats'); }elseif (($customer->engage_conversation === null || $customer->engage_conversation === '') && $customer->status != 'solved') { $route = route('admin.livechat'); }else{ $route = route('admin.myOpenedChats'); } @endphp cust_id}} data-route={{ $route }} class="action-btns1" data-bs-toggle="tooltip" data-bs-placement="top" title="" data-bs-original-title="View" aria-label="View">
@endsection @section('scripts') @vite(['resources/assets/js/select2.js']) @endsection