{{ $employee->position ?? 'N/A' }}
{{ $employee->department ?? 'N/A' }}
Employee ID
{{ $employee->employee_id ?? 'N/A' }}
{{ $employee->first_name ?? 'N/A' }}
{{ $employee->last_name ?? 'N/A' }}
{{ $employee->email ?? 'N/A' }}
{{ $employee->phone ?? 'N/A' }}
{{ $employee->date_of_birth ? $employee->date_of_birth->format('d M Y') : 'N/A' }}
{{ $employee->place_of_birth ?? 'N/A' }}
{{ $employee->sex ?? 'N/A' }}
{{ $employee->marital_status ?? 'N/A' }}
{{ $employee->dependents ?? 'N/A' }}
{{ $employee->education_level ?? 'N/A' }}
{{ $employee->address ?? 'N/A' }}
{{ $employee->employee_id ?? 'N/A' }}
{{ $employee->id_number ?? 'N/A' }}
{{ $employee->staff_number ?? 'N/A' }}
{{ $employee->position ?? 'N/A' }}
{{ $employee->category ? ucwords(str_replace('_', ' ', $employee->category)) : 'N/A' }}
{{ $employee->department ?? 'N/A' }}
{{ $employee->join_date ? $employee->join_date->format('d M Y') : 'N/A' }}
{{ $employee->work_address ?? 'N/A' }}
{{ $employee->contract_start ? $employee->contract_start->format('d M Y') : 'N/A' }}
{{ $employee->contract_end ? $employee->contract_end->format('d M Y') : 'N/A' }}
{{ $employee->bank_name ?? 'N/A' }}
{{ $employee->bank_branch ?? 'N/A' }}
{{ $employee->bank_account_name ?? 'N/A' }}
{{ $employee->bank_account_number ?? 'N/A' }}
${{ number_format($employee->base_salary, 2) }}
{{ $employee->salaryLevel->name }}
${{ number_format($employee->salaryLevel->amount, 2) }}
{{ $allowance->name }}
{{ $allowance->type == 'fixed' ? 'Fixed' : 'Percentage' }}
@if($allowance->type == 'fixed') {{ number_format($allowance->pivot->amount, 2) }} TZS @else {{ number_format($allowance->pivot->amount, 2) }}% @endif
No allowances assigned
@endforelse{{ $deduction->name }}
{{ $deduction->type == 'fixed' ? 'Fixed' : 'Percentage' }}
@if($deduction->type == 'fixed') {{ number_format($deduction->pivot->amount, 2) }} TZS @else {{ number_format($deduction->pivot->amount, 2) }}% @endif
No deductions assigned
@endforelse