@include('includes.errors')
@include('includes.success')
Payment Structure Records: {{count($pstrus)}}
| Sn |
Name |
Basic |
Gross Pay |
Total Deduction |
Net Pay |
|
@foreach ($pstrus as $item)
| {{$i+1}} |
{{!empty($item->payroll) ? $item->payroll->employee_name : "N/A"}} |
{{number_format($item->basic,2)}} |
{{number_format($item->gross_pay,2)}} |
{{number_format($item->deduction,2)}} |
{{number_format($item->net_pay,2)}} |
Edit
|
@endforeach