{{-- resources/views/purchases/payments/show.blade.php --}} @extends('layouts.app') @section('title', 'Payment ' . $payment->reference) @section('page_title', $payment->reference) @section('page_subtitle', 'Supplier payment') @section('content')
← Payments
Payment Details
Reference {{ $payment->reference }}
@if($payment->purchaseOrder) @endif
Amount {{ $payment->currency }} {{ number_format($payment->amount, 2) }}
Method {{ ucfirst(str_replace('_', ' ', $payment->payment_method)) }}
@if($payment->transaction_reference)
Transaction Ref {{ $payment->transaction_reference }}
@endif
Date Paid {{ $payment->paid_at->format('d M Y') }}
Paid By {{ $payment->paidBy?->name ?? '—' }}
@if($payment->notes)
Notes
{{ $payment->notes }}
@endif
@endsection