{{ $company['company_name'] ?? 'NexaHR' }}
{{ $company['address'] ?? '' }}
{{ strtoupper($adjustment->type_label) }} SLIP
{{ $adjustment->year }}
Employee Name
{{ $adjustment->employee->full_name ?? '-' }}
Employee ID
{{ $adjustment->employee->employee_id ?? '-' }}
Department
{{ $adjustment->employee->department->name ?? '-' }}
Status
{{ ucfirst($adjustment->status) }}
{{ $adjustment->title }}${{ number_format($adjustment->amount, 2) }}
Tax Deduction-${{ number_format($adjustment->tax_deduction, 2) }}
PF Deduction-${{ number_format($adjustment->pf_deduction, 2) }}
Other Deduction-${{ number_format($adjustment->other_deduction, 2) }}
NET PAYABLE
${{ number_format($adjustment->net_amount, 2) }}
Paid Date: {{ optional($adjustment->paid_date)->format('F j, Y') ?? '-' }} @if($adjustment->notes)
Notes: {{ $adjustment->notes }} @endif