Deposit Details

ID: #{{ $deposit->id }}

Back to Deposits

Deposit Information

Amount
R{{ number_format($deposit->amount, 2) }}
Payment Method
{{ $deposit->paymentOption->name ?? 'Unknown Method' }}
Reference/Transaction ID
{{ $deposit->reference_number ?? 'Not provided' }}
Status
{{ ucfirst($deposit->status) }}
Date Submitted
{{ $deposit->created_at->format('F d, Y h:i A') }}
Last Updated
{{ $deposit->updated_at->format('F d, Y h:i A') }}
User Notes
{{ $deposit->user_notes ?? 'No notes provided' }}
@if($deposit->admin_notes)
Admin Notes
{{ $deposit->admin_notes }}
@endif @if($deposit->proof_document)
Payment Proof
Payment Proof
@endif

User Information

{{ substr($deposit->user->name ?? 'U', 0, 1) }}
{{ $deposit->user->name ?? 'Unknown User' }}
{{ $deposit->user->email ?? 'No email' }}

Actions

@csrf