@endif
|
Receipt Details
Receipt #:
{{ $receipt_number }}
Date:
{{ $transaction_date->format('F j, Y') }}
Status:
{{ ucfirst($transaction_status) }}
Invoice ID:
{{ $invoice->id }}
@if($subscription)
Subscription:
{{ $subscription->stripe_id }}
@endif
|
Customer Information
Name:
{{ $customer->name ?? 'N/A' }}
Email:
{{ $customer->email ?? 'N/A' }}
Customer ID:
{{ $customer->id ?? 'N/A' }}
Stripe ID:
{{ $customer->stripe_id ?? 'N/A' }}
|
| Description | Subscription | Quantity | Period | Amount |
|---|---|---|---|---|
| {{ $item->description }} | @if(isset($item->subscription_name)) {{ $item->subscription_name }} @else N/A @endif | {{ $item->quantity ?? 1 }} | @if($item->period) {{ date('M j, Y', $item->period->start) }} - {{ date('M j, Y', $item->period->end) }} @else N/A @endif | ${{ number_format($item->amount / 100, 2) }} |
| No items found | ||||