@extends('layouts.app') @section('title','Daily Labour Payroll') @section('page-title','Daily Labour Payroll') @section('content')
@forelse($batches as $b) @php $m = $b->status_meta; @endphp @empty @endforelse
Batch NoDateProjectWorkersTotal (GH₵)Submitted ByStatusNext Action
{{ $b->batch_number }} {{ $b->work_date->format('D, d M Y') }} {{ $b->project->name ?? '-' }} {{ $b->worker_count }} {{ number_format($b->total_amount,2) }} {{ $b->submitter->name ?? '-' }} {{ $m['label'] }} {{ $b->next_actor }}
No payroll batches found.
@endsection