|
{{ @$report['employee_name'] }} {{ @$report['employee_id'] ? '[' . $report['employee_id'] . ']' : '' }}
|
{{ @$report['department'] }}
|
{{ @$report['designation'] }}
|
{{-- Render "Not Joined" days --}}
@if (!empty($report['month_statuses']['totalNotJoin']))
{{ _trans("common.Not Joined") }}
|
@endif
{{-- Render remaining statuses --}}
@foreach ($report['month_statuses']['statuses'] ?? [] as $key => $monthStatus)
@if ($key >= $report['month_statuses']['totalNotJoin'])
{!! $monthStatus !!}
|
@endif
@endforeach
{{-- Totals --}}
{{ @$report['month_statuses']['totalPresent'] }} |
{{ @$report['month_statuses']['totalAbsent'] }} |
{{ @$report['month_statuses']['totalWeekend'] }} |
{{ @$report['month_statuses']['totalHoliday'] }} |
{{ @$report['month_statuses']['totalLeave'] }} |
@empty