@if ($selectedReport == 'evaluation')
| Reference ID |
Name |
User Id |
Date & Time |
Source |
View |
@forelse($evaluation_report ?? [] as $data)
| {{ $data['referenceID'] }} |
{{ $data['name'] }} |
{{ $data['name'] }} |
{{ $data['created_at'] }} |
{{ $data['name'] }} |
|
@empty
| There is no data found |
@endforelse
@endif
@if ($selectedReport == 'nonvoice')
| Source ID |
Channel |
Date & Time the Action Happened |
Customer Name |
Status |
@forelse($resources ?? [] as $data)
| {{ $data->resource_id }} |
{{ $data?->resource?->resourceInfo?->channel }} |
{{ $data->created_at->format('Y-m-d h:i A') }} |
{{ $data?->resource?->resourceInfo?->customer?->display_name ?? '-' }} |
{{ $data->action }} |
@empty
| There is no data found |
@endforelse
@endif