LAPORAN PENSIUN PEGAWAI

Tahun Anggaran {{ $year }}

Dicetak pada: {{ now()->format('d F Y H:i') }} | Total Data: {{ $summary['total'] }} Pegawai
@if(count($data) > 0) @foreach($data as $index => $employee) @endforeach
No Bulan NIP Nama Pegawai Jabatan Departemen Tgl Pensiun Tipe Status
{{ $index + 1 }} {{ $employee->retirement_date->format('M Y') }} {{ $employee->nip }}
{{ strtoupper(substr($employee->name, 0, 2)) }}
{{ $employee->name }}
{{ $employee->position ?? '-' }} {{ $employee->department->name ?? '-' }} {{ $employee->retirement_date->format('d/m/Y') }} {{ str_replace(['_', '-'], ' ', $employee->retirement_type) }} {{ $employee->employment_status }}
@else

Tidak ada data pensiun untuk tahun {{ $year }}

@endif