Payroll Batches

Monthly Salary Processing

Generate Batch
@forelse($batches as $batch) @empty @endforelse
Batch Name Pay Period Pay Group Total Amount Status Actions
{{ $batch->batch_name }}
Created: {{ $batch->created_at->format('M d, Y') }}
{{ $batch->pay_period }} {{ $batch->payGroup->name }} ${{ number_format($batch->total_amount, 2) }} @php $statusColors = [ 'Draft' => 'bg-slate-100 text-slate-600', 'Approved' => 'bg-amber-100 text-amber-600', 'Paid' => 'bg-emerald-100 text-emerald-600', 'Cancelled' => 'bg-red-100 text-red-600' ]; @endphp {{ $batch->status }} View Entries
No payroll batches generated