Payroll Processing
@if($processingBatch)
{{ $batchStatus }}
{{ $batchProgress }}% Complete
@endif
@forelse($batches as $batch) @empty @endforelse
Batch Name Pay Period Payment Date Employees Total Amount Status Actions
{{ $batch->batch_name }}
@if($batch->description) {{ $batch->description }} @endif
{{ \Carbon\Carbon::parse($batch->pay_period_start)->format('M d') }} - {{ \Carbon\Carbon::parse($batch->pay_period_end)->format('M d, Y') }} {{ \Carbon\Carbon::parse($batch->pay_date)->format('M d, Y') }} {{ $batch->total_employees }}
{{ \App\Helpers\Mk::formatCurrency($batch->total_net_amount) }} Gross: {{ \App\Helpers\Mk::formatCurrency($batch->total_gross_amount) }}
{{ ucfirst($batch->status) }}
No payroll batches found. Create your first batch to get started.
{{ $batches->links() }}
@if($showModal) @endif