{{ get_option('app_name') }}
{{ __('Purchase Date') }}:{{ $item->created_at->format(get_option('app_date_format')) }}
| {{ __('Name') }} | {{ __('Purchase Date') }} | {{ __('Payment Method') }} | {{ __('Amount') }} |
|---|---|---|---|
| {{ $item->course ? @$item->course->title : '' }} {{ $item->product_id ? @$item->product->title : '' }} {{ $item->consultationSlot ? @$item->consultationSlot->user->instructor->full_name : '' }} | {{ $item->created_at->format(get_option('app_date_format')) }} | {{ ucwords($item->order?->payment_method) }} | @if(get_currency_placement() == 'after') {{ $item->unit_price }} {{ get_currency_code() }} @else {{ get_currency_code() }} {{ $item->unit_price }} @endif |
| {{ __('Subtotal') }} | @if(get_currency_placement() == 'after') {{ $item->unit_price }} {{ get_currency_code() }} @else {{ get_currency_code() }} {{ $item->unit_price }} @endif | ||
| {{ __('Tax')}} {{get_option('tax_amount')}}% {{__('of')}} {{$item->unit_price}} | @if(get_currency_placement() == 'after') {{ $item->order->tax }} {{ get_currency_code() }} @else {{ get_currency_code() }} {{ $item->order->tax }} @endif | ||
| {{ __('Total') }} | @if(get_currency_placement() == 'after') {{ $item->order->grand_total }} {{ get_currency_code() }} @else {{ get_currency_code() }} {{ $item->order->grand_total }} @endif | ||
{{ __('We thank you for your business and continued use of') }} {{ get_option('app_name') }}