@extends('layouts.adminmaster') @section('styles') @endsection @section('content')
| {{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
|
| {{lang('Skills')}} |
@php
$values = explode(",", $users->skills);
@endphp
|
| {{lang('Location')}} | {{$users->country}} |
| {{lang('Sl.No')}} | {{lang('Rating')}} | {{lang('problem Rectifiedt')}} | {{lang('Feed Back Data')}} | {{lang('Actions')}} |
|---|---|---|---|---|
| {{$i++}} | {{$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">
|