Gold Mining Site Management
Chunya-Itumbi, Tanzania
PAYROLL RECEIPT
Employee Name: {{ $payroll->user->full_name }}
Employee ID: {{ $payroll->user->employee_id }}
Position: {{ $payroll->user->position }}
Department: {{ $payroll->user->department->name ?? 'N/A' }}
Payroll Period: {{ $payroll->formatted_period }}
Payroll Date: {{ $payroll->payroll_date->format('M d, Y') }}
Working Days: {{ $payroll->working_days }}
Days Worked: {{ $payroll->days_worked }}
Status: {{ ucfirst($payroll->status) }}
Salary Breakdown
EARNINGS
Basic Salary TZS {{ number_format($payroll->basic_salary, 0) }}
@if($payroll->overtime_pay > 0)
Overtime Pay TZS {{ number_format($payroll->overtime_pay, 0) }}
@endif @if($payroll->bonus > 0)
Bonus TZS {{ number_format($payroll->bonus, 0) }}
@endif @if($payroll->allowances > 0)
Allowances TZS {{ number_format($payroll->allowances, 0) }}
@endif @if($payroll->advance_salary > 0)
Advance Salary TZS {{ number_format($payroll->advance_salary, 0) }}
@endif
Total Gross Salary TZS {{ number_format($payroll->gross_salary, 0) }}
DEDUCTIONS
@if($payroll->tax_deduction > 0)
Tax Deduction TZS {{ number_format($payroll->tax_deduction, 0) }}
@endif @if($payroll->social_security > 0)
Social Security TZS {{ number_format($payroll->social_security, 0) }}
@endif @if($payroll->pension_contribution > 0)
Pension Contribution TZS {{ number_format($payroll->pension_contribution, 0) }}
@endif @if($payroll->other_deductions > 0)
Other Deductions TZS {{ number_format($payroll->other_deductions, 0) }}
@endif
Total Deductions TZS {{ number_format($payroll->total_deductions, 0) }}
NET SALARY
TZS {{ number_format($payroll->net_salary, 0) }}
@if($payroll->status === 'paid')
Payment Information
Payment Method: {{ $payroll->payment_method }}
Paid Date: {{ $payroll->paid_at->format('M d, Y H:i') }}
@if($payroll->transaction_reference)
Transaction Reference: {{ $payroll->transaction_reference }}
@endif
@endif @if($payroll->notes)
Notes

{{ $payroll->notes }}

@endif