@extends('layouts.sidebar') @section('title', 'Payroll') @section('content') @if (in_array('Payroll Checking', $privileges) || in_array('Payroll Approve', $privileges) || in_array('View Payroll', $privileges))
{{ $data->client->department_name }} Summary Payroll report with Batch ID: {{ $batch_id }}
Period Cover: {{ \Carbon\Carbon::parse($data->pay_period_start)->format('F j, Y') }} to {{ \Carbon\Carbon::parse($data->pay_period_end)->format('F j, Y') }}
ID | Employee Name | Rate | Earnings | Deductions | netpay | Action |
---|---|---|---|---|---|---|
Total | 0 | 0 | 0 | 0 |
SUMMARY
Trx Name | Earnings | Deduction |
---|---|---|
{{ $row['name'] }} | ₱{{ number_format($row['amount'], 2) }} | |
{{ $row['name'] }} | ₱{{ number_format($row['amount'], 2) }} | |
Total | ₱{{ number_format($totalEarnings, 2) }} | ₱{{ number_format($totalDeductions, 2) }} |
Prepared By: {{ $prepared->user->name }}
@endif @if ($approved && $approved->user)Approved By: {{ $approved->user->name }}
@endif