@extends('layouts.app') @section('title', 'Payment') @section('content')

Payment #{{ $payment->id }}

Invoice #{{ $payment->invoice_id }} ยท {{ $payment->patient->user->name ?? '-' }}
Edit
@csrf @method('DELETE')
Amount
{{ $payment->amount }}
Method
{{ $payment->method }}
Status
{{ $payment->status }}
Transaction reference
{{ $payment->transaction_reference ?? '-' }}
@endsection