@if (isset($employee))
@php $other_employee_allowances = $employee->employee_allowances->where('allowance_group_id',4); @endphp
@if (count($other_allowances) > 0)
OTHER ALLOWANCE/DEDUCTION
@foreach ($other_allowances as $list)
@php
$employee_other_allowance = $other_employee_allowances->where('allowance_id', $list->allowance_id)->first() ?? null;
$allowance_amount = $employee_other_allowance ? round($employee_other_allowance->amount ?? 0) : round($list->amount ?? 0);
@endphp
@endforeach
@else
OTHER ALLOWANCE/DEDUCTION
@foreach ($other_allowances as $list)
@endforeach
@endif
@endif