123 Business Street, City, Country
Phone: +1234567890 | Email: payroll@company.com
| Name: | {{ $payroll->user->name }} |
| Employee ID: | {{ $payroll->user->employee_id }} |
| Designation: | {{ $payroll->user->designation }} |
| Payment Date: | {{ $payroll->created_at->format('d M Y') }} |
| Payment Method: | {{ ucfirst($payroll->payment_method) }} |
| Bank Account: | {{ $payroll->bank_account }} |
| Basic Salary | {{ number_format($payroll->basic_salary, 2) }} |
| {{ $item->description }} | {{ number_format($item->amount, 2) }} |
| Commission | {{ number_format($payroll->total_commissions, 2) }} |
| Bonus | {{ number_format($payroll->total_bonuses, 2) }} |
| Total Earnings | {{ number_format($payroll->total_earnings, 2) }} |
| {{ $item->description }} | {{ number_format($item->amount, 2) }} |
| Tax | {{ number_format($payroll->tax_amount, 2) }} |
| Total Deductions | {{ number_format($payroll->total_deductions, 2) }} |