@extends('layouts.app') @section('title','Edit Payroll') @section('page-title','Edit Payroll Batch') @section('content')
Edit: {{ $payroll->batch_number }} — {{ $payroll->work_date->format('d M Y') }} {{ $payroll->status_meta['label'] }}
@csrf @method('PUT')
@foreach($payroll->entries as $i => $e) @endforeach
NameRoleAttendanceDaily Rate (GH₵)Amount DueNotes
{{ number_format($e->amount_due,2) }}
TOTAL:{{ number_format($payroll->total_amount,2) }}
Cancel
@endsection @push('scripts') @endpush