@extends('admin.layout.app')
@section('styles')
@endsection
@section('body')
Payment #{{ $payment->id }}
{{ $payment->laborer->name ?? '—' }}
—
{{ $payment->paid_at ? $payment->paid_at->toDateString() : '—' }}
Payee (Laborer)
{{ $payment->laborer->name ?? '—' }}
Payment Method
{{ $payment->method ?: '—' }}
@if (!empty($payment->timesheet_id ?? null))
Timesheet #
#{{ $payment->timesheet_id }}
@endif
Notes
{{ $payment->notes ?: '—' }}
Prepared by: {{ auth()->user()->name ?? '—' }}
Created at: {{ $payment->created_at->format('Y-m-d H:i') ?? '—' }}
Updated at: {{ $payment->updated_at->format('Y-m-d H:i') ?? '—' }}
{{ number_format((float) $payment->amount, 2) }}
Amount
Thank you — keep this slip for your records.
Tip: You can also press Ctrl + P (or Cmd + P) to print.
@endsection
@section('scripts')
@endsection