Payroll Report

@if (session()->has('message')) @endif
Appraiser fee reflects on payroll based on when the fee was created, not when the file is marked completed. File status can be in any status and appraiser fee will show on report.
@forelse($payrolls as $index => $item) @php $total = $item->appraiser_unit * $item->appraiser_amount; @endphp @empty @endforelse
S.No File # Claim # Insurance Type Desc. Unit Unit Price Total
{{ ($payrolls->currentPage() - 1) * $payrolls->perPage() + $index + 1 }} {{ $item->assignment->file_no ?? '' }} {{ $item->assignment->claim_number ?? '' }} {{ $item->assignment->insuranceCompany->company_name ?? '' }} {{ strtoupper(str_replace('_',' ', $item->type ?? '')) }} {{ $item->description ?? '' }} {{ $item->appraiser_unit }} ${{ number_format($item->appraiser_amount, 2) }} ${{ number_format($total, 2) }}
No Record Found
{{ $payrolls->links() }}