{{ config('app.name') }}
@if($refunded)
{{ __('Refunded') }}
@endif
{{ config('app.name') }}
{{ __('Email') }} : {{ config('app.email') }}
{{ __('Website') }} : {{ config('app.url') }}
{{ __('Date') }} : {{ $transaction->created_at }}
{{ __('Reference') }} : {{ $reference }}
{{ __('Bill to :') }}
{{ __('Name') }} : {{ $buyer->name }}
{{ __('Email') }} : {{ $buyer->email }}
@foreach($items ?? [] as $item) @endforeach @if($discount) @endif
{{ __('Description') }} {{ __('Unit price') }} {{ __('Quantity') }} {{ __('Total') }}
{{ $item['name'] }} @if($is_subscription) ({{ __('Subscription') }}) @endif {{ $item['value'] }} 1 {{ $item['value'] }}
{{ __('Subtotal') }} {{ $currency .' '. $subtotal }}
{{ __('Handling Fee') }} {{ $currency .' '. $fee }}
{{ __('Tax') }} {{ $currency .' '. $tax }}
{{ __('Discount') }} {{ $currency .' '. $discount }}
{{ __('Total due') }} {{ $currency .' '. $total_due }}