| Visa by Status Report |
|
| DONE |
{{ $done->count() }} countries |
|
| IN PROCESS (PARTIAL DONE) |
{{ $approve->count() }} countries |
|
|
@if(!empty($filters))
{{ implode(', ', (array) $filters) }}
@else
VISA REQUEST
@endif
|
{{ $multi->count() }} countries |
|
|
| DONE STATUS |
|
IN PROCESS STATUS |
|
VISA REQUEST |
| Country Name |
Count of e_visa |
|
Country Name |
Count of Status |
|
Country Name |
Count of Status |
@php
$maxRows = max($done->count(), $approve->count(), $multi->count());
$doneItems = $done->values();
$approveItems = $approve->values();
$multiItems = $multi->values();
@endphp
@for($i = 0; $i < $maxRows; $i++)
|
{{ $doneItems->get($i)->name ?? '' }}
|
{{ isset($doneItems->get($i)->total_evisa) ? number_format($doneItems->get($i)->total_evisa) : '' }}
|
|
{{ $approveItems->get($i)->name ?? '' }}
|
{{ isset($approveItems->get($i)->total_status) ? number_format($approveItems->get($i)->total_status) : '' }}
|
|
{{ $multiItems->get($i)->name ?? '' }}
|
{{ isset($multiItems->get($i)->total_status) ? number_format($multiItems->get($i)->total_status) : '' }}
|
@endfor
| Grand Total |
{{ number_format($done->sum('total_evisa')) }} |
|
Grand Total |
{{ number_format($approve->sum('total_status')) }} |
|
Grand Total |
{{ number_format($multi->sum('total_status')) }} |