@extends('layouts.header')
@section('content')
@php
$total_records=$TotalRecordsCnt;
$page_num=$Page_num;
$start_from = ($Page_num-1)*$limit;
//$a=1;
$a=$start_from+1;
//echo $start_from;
$ModuleId="32f08263-96a5-11eb-948a-56b1773fd56f";
echo "
";
//print_r($GetREsult);
echo "
";
//$GetResultQuery=base64_encode($GetResultQuery);
@endphp
| Sl no |
CallRecordName |
CallerId |
StartDate |
CallType |
UCID |
CallStatus |
@foreach($GetREsult as $EachRecord)
@php
$CallRecordName=$EachRecord->CallRecordName;
$CallerId=$EachRecord->CallerId;
$StartDate=$EachRecord->StartDate;
$CallType=$EachRecord->CallType;
$UCID=$EachRecord->UCID;
$CallStatus=$EachRecord->CallStatus;
@endphp
| {{$a}} |
{{$CallRecordName}} |
{{$CallerId}} |
{{$StartDate}} |
{{$CallType}} |
{{$UCID}} |
{{$CallStatus}} |
@php
$a++;
@endphp
@endforeach
@endsection