Welfare Fund Receive
{{-- @if(count($data['receive']) > 0) --}}
{{--
Advanced Salary Loan Receive
--}}
| Sl |
Date |
Amount |
Total |
@php
$sl = 1;
$total = 0;
$ownTotal = 0;
@endphp
@foreach ($wfInfo as $key => $info)
@php
$total += $info['own'];
@endphp
@if ($info['date'] == 'Opening Balance')
| {{ $info['date'] }} |
@else
{{ $sl++ }} |
{{ $info['date'] }} |
@endif
{{ number_format($info['own'], 2) }} |
{{ number_format($total, 2) }} |
@php
$ownTotal += $info['own'];
@endphp
@endforeach
| Total: |
{{ number_format($ownTotal, 2) }} |
{{ number_format($ownTotal, 2) }} |
{{-- @endif --}}
Welfare Fund Withdraw
| Sl |
Transaction Date |
Amount |
@php
$sl = 1;
$total = 0;
@endphp
@foreach($wfWithDrawInfo as $key => $info)
| {{ $sl++ }} |
{{ date('d-m-Y', strtotime($info->transaction_date)) }} |
{{ number_format($info->emp_amount, 2) }} |
@php $total = $total + $info->emp_amount; @endphp
@endforeach
| Total: |
{{ number_format($total, 2) }} |