| Earnings |
| Description |
Amount |
| {{__('Basic Salary')}} ({{__('Total')}}) |
1800 |
{{-- @if($allowances)
@foreach($allowances as $allowance)
| {{$allowance['allowance_title']}} |
{{$allowance['allowance_amount']}} |
@php
$total_earnings = $total_earnings + $allowance['allowance_amount'] ;
@endphp
@endforeach
@endif
@if($commissions)
@foreach($commissions as $commission)
| {{$commission['commission_title']}} |
{{$commission['commission_amount']}} |
@php
$total_earnings = $total_earnings + $commission['commission_amount'] ;
@endphp
@endforeach
@endif
@if($other_payments)
@foreach($other_payments as $other_payment)
| {{$other_payment['other_payment_title']}} |
{{$other_payment['other_payment_amount']}} |
@php
$total_earnings = $total_earnings + $other_payment['other_payment_amount'] ;
@endphp
@endforeach
@endif
@if($overtimes)
@foreach($overtimes as $overtime)
| {{$overtime['overtime_title']}} |
{{$overtime['overtime_amount']}} |
@php
$total_earnings = $total_earnings + $overtime['overtime_amount'] ;
@endphp
@endforeach
@endif --}}
| Total |
:$ 2090 |