{{ get_option('app_name') }}
{{ __('Purchase Date') }}:{{ $subscription->payment?->created_at?->format(get_option('app_date_format')) }}
| {{ __('Plan Name') }} | {{ __('Purchase Date') }} | {{ __('Payment Method') }} | {{ __('Price') }} |
|---|---|---|---|
| {{ $subscription->package?->title ?? 'N/A' }} | {{ $subscription->created_at->format(get_option('app_date_format')) }} | {{ ucfirst($subscription->payment?->payment_method ?? '-') }} | @php $symbol = get_currency_code(); $place = get_currency_placement(); $amount = $subscription->payment?->grand_total ?? 0; @endphp {{ $place === 'after' ? $amount . ' ' . $symbol : $symbol . ' ' . $amount }} |
| {{ __('Subtotal') }} | @if(get_currency_placement() == 'after') {{ $amount }} {{ get_currency_code() }} @else {{ get_currency_code() }} {{ $amount }} @endif | ||
| {{ __('Tax') }} ({{ get_option('tax_amount') }} %) {{__('of')}} {{$amount}} | @if(get_currency_placement() == 'after') {{ $subscription->payment->tax ?? 0 }} {{ get_currency_code() }} @else {{ get_currency_code() }} {{ $subscription->payment->tax ?? 0 }} @endif | ||
| {{ __('Total') }} | @if(get_currency_placement() == 'after') {{ $subscription->payment->grand_total }} {{ get_currency_code() }} @else {{ get_currency_code() }} {{ $subscription->payment->grand_total }} @endif | ||
{{ __('We thank you for your business and continued use of') }} {{ get_option('app_name') }}