@vite(['resources/css/app.css'])
Back to Payment

{{ config('app.name') }}

Golf Booking Platform

{{ $payment->status_label }}

Payment Receipt

Receipt Details

Receipt Number:

#{{ str_pad($payment->id, 8, '0', STR_PAD_LEFT) }}

Transaction ID:

{{ Str::limit($payment->stripe_payment_intent_id, 30) }}

Payment Date:

@userDateTime($payment->created_at)

@if($payment->captured_at)
Captured:

@userDateTime($payment->captured_at)

@endif

Billing Information

Client Name:

{{ $bookingRequest->client->name }}

Email:

{{ $bookingRequest->client->email }}

@if($bookingRequest->client->phone)
Phone:

{{ $bookingRequest->client->phone }}

@endif

Booking Details

Golfer:

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

Booking Date:

{{ $bookingRequest->formatted_proposed_date }}

Course:

{{ $bookingRequest->course_name }}

Time:

{{ $bookingRequest->formatted_proposed_time }}

Location:

{{ $bookingRequest->course_location }}

Duration:

{{ $bookingRequest->duration_minutes / 60 }} hour(s)

Group Size:

{{ $bookingRequest->group_size }} player(s)

Hourly Rate:

${{ number_format($bookingRequest->price_per_hour, 2) }}/hr

Payment Breakdown

@if($payment->subtotal)
Booking Amount

${{ number_format($bookingRequest->price_per_hour, 2) }}/hr × {{ $bookingRequest->duration_minutes / 60 }} hrs

{{ $payment->formatted_subtotal }}
@endif
Platform Service Fee 10%
{{ $payment->formatted_platform_fee }}
@if($payment->stripe_fee > 0)
Payment Processing Fee 2.9% + $0.30
{{ $payment->formatted_stripe_fee }}
@endif
Total Amount Paid {{ $payment->formatted_amount }}

Payment Method

Credit/Debit Card

Processed securely by Stripe

This is an official receipt from {{ config('app.name') }}

For questions about this payment, please contact support at {{ config('mail.from.address') }}

Transaction processed on @userDateTime($payment->created_at)

© {{ date('Y') }} {{ config('app.name') }}. All rights reserved.

Receipt #{{ str_pad($payment->id, 8, '0', STR_PAD_LEFT) }}