@php
$totalMonthlySalary = 0;
$totalContribution = 0;
@endphp
@foreach($data['userList'] as $key => $user)
{{ ++$key }} |
|
{{ $user['user_details']['profiles']['secondary_education_index_number'] }} |
{{ $user['user_details']['full_name'] }} |
{{ $user['user_details']['mobile'] }} |
|
@php
$totalMonthlySalary += $user['monthly_salary'];
$totalContribution += $user['contribution'];
@endphp
{{ number_format($user['monthly_salary'], 2) }} |
{{ number_format($user['contribution'], 2) }} |
@endforeach
|
|
|
|
|
|
{{ number_format($totalMonthlySalary, 2) }} |
{{ number_format($totalContribution, 2) }} |
|
CONTRIBUTIONS FOR THE MONTH OF: |
{{ date('M Y', strtotime($data['year'] . '-' . $data['month'] . '-01')) }} |
|
|
Page No: |
|
|
NAME OF EMPLOYER: |
|
{{ $data['company']['name'] }} |
|
|
Cheque No. |
|
|
EMPLOYER'S ADDRESS: |
|
P.O. BOX: {{ $data['company']['zip_code'] }} TEL: {{ $data['company']['mobile'] }} |
|
|
Date of Chq. |
|
|
|
|
|
|
|
Amount: |
{{ number_format($totalContribution, 2) }} |