@extends('dashboard.layouts.app') @section('content')
Invoice Number: {{ $payrollInvoice->invoice_no ?? '' }}
Month: {{ $payrollInvoice->month ?? '' }}
Year: {{ $payrollInvoice->year ?? '' }}
Total: {{ $payrollInvoice->total ?? '' }}
@elseNo information available.
@endifStaff | Basic Salary | Total Earnings | Total Deductions | Tax | Net Salary | Payment Status |
---|---|---|---|---|---|---|
{{ $generate->staff->first_name ?? '' }} {{ $generate->staff->last_name ?? '' }} | {{ number_format($generate->basic_salary, 2) }} | {{ number_format($generate->total_earning, 2) }} | {{ number_format($generate->total_deduction, 2) }} | {{ number_format($generate->tax, 2) }} | {{ number_format($generate->net_salary, 2) }} | {{ ucfirst($generate->payroll_status) }} |
Invoice Total: {{ number_format($payrollInvoice->total, 2) }}