@extends('admin.layout') @section('content')

{{ trans('View Quick Audit') }}

@php $getUserRoleData = userRoleData(); $LeadSources = explode(",",$getUserRoleData->LeadSources); @endphp
@if(session()->has('message'))

{{ trans('labels.Successlabel') }}

{{ session()->get('message') }}
@endif @if(session()->has('error'))

{{ trans('labels.WarningLabel') }}

{{ session()->get('error') }}
@endif
{{$errors->first('audit_type') }}
{{($errors->has('audit_all_subject')) ? "The audit subject field is required." : "" }}
last_name }} @endif" readonly>
{{ $result['calldetails']['ranking'] }}

Remarks
@foreach($result['calldetails']['auditRemarkLogs'] as $auditLogs)
{{$auditLogs->updated_by_name}} updated on {{$auditLogs->updated_datetime}}
{!!nl2br($remark_log_text)!!}
@endforeach

History Logs
@foreach($result['calldetails']['auditLogs'] as $auditLogs)
{!!nl2br($log_text)!!}  by {{$auditLogs->updated_by_name}} at {{$auditLogs->updated_datetime}}
@endforeach
@endsection