@extends('layouts.app', ['pageTitle' => 'Payroll', 'pageSubtitle' => 'Prepare Canadian payroll records and track payment status']) @section('content')
| No | Staff | Period | Gross | Deductions | Income Tax | Net | Status |
|---|---|---|---|---|---|---|---|
| {{ $r->payroll_number }} | {{ $r->user_name }} | {{ $r->pay_period }} | {{ $financeCurrencySymbol }}{{ number_format($r->gross_pay,2) }} | {{ $financeCurrencySymbol }}{{ number_format($r->deductions,2) }} | {{ $financeCurrencySymbol }}{{ number_format($r->tax_amount,2) }} | {{ $financeCurrencySymbol }}{{ number_format($r->net_pay,2) }} | {{ $r->status }} |