@php use Illuminate\Support\Carbon; @endphp
Sl # | Business name | Branch name | Department name | Status | Date | No of active employees | Leaves |
---|---|---|---|---|---|---|---|
{{ $loop->iteration }} | {{ optional($status->branch->business)->name ?? 'No data' }} | {{ optional($status->branch)->name ?? 'No data' }} | {{ optional($status)->dep_name ?? 'No data' }} | {{ optional($status)->status == '0' ? 'Inactive' : 'Active' }} | {{ Carbon::today()->format('D-M-Y') }} | {{ optional($status)->active_employee() ?? 'No data' }} | {{ optional($status->leavesCount()->where('status', '1')->where('start_date', Carbon::today()))->count() ?? 'No data' }} |