@extends('layouts.admin') @section('title', 'Payment ' . $payment->payment_number) @section('page-title', 'Payment Details') @section('content')
Payment Date: {{ $payment->payment_date->format('M d, Y') }}
Customer
{{ $payment->customer->name }}
Payment Method
{{ ucfirst(str_replace('_', ' ', $payment->payment_method)) }}
Amount
{{ $payment->currency }} {{ number_format($payment->amount, 2) }}
Transaction ID
{{ $payment->transaction_id }}
Notes
{{ $payment->notes }}