{{ __('Payment History') }}

Total Spent
${{ number_format($totalSpent, 2) }}
Total Refunded
${{ number_format($totalRefunded, 2) }}

Payment Transactions

@if($payments->count() > 0)
@foreach($payments as $payment) @php $bookingRequest = $payment->bookingRequest(); @endphp @if($bookingRequest)

{{ $bookingRequest->golfer->name }}

@userDate($payment->created_at)

{{ $payment->status_label }}

{{ $bookingRequest->course_name }}

{{ $bookingRequest->course_location }}

{{ $payment->formatted_amount }} View Details →
@endif @endforeach
{{ $payments->links() }}
@else

No payments yet

You haven't made any payments yet. Book a session with a golfer to get started!

@endif