{{ __('Purchase Invoice') }}

{{ get_option('app_name') }}

#{{ $subscription->payment?->order_number }}

{{ __('Purchase Date') }}:{{ $subscription->payment?->created_at?->format(get_option('app_date_format')) }}

{{ __('From') }}:
@if(get_option('app_name')) {{ get_option('app_name') }}
@endif @if(get_option('app_email')) {{ get_option('app_email') }}
@endif @if(get_option('app_contact_number')) {{ get_option('app_contact_number') }}
@endif @if(get_option('tax_system_enable') && get_option('tax_number')) {{ __('Tax Number') }}: {{ get_option('tax_number') }}
@endif
{{ __('To') }}:
@if($subscription->payment?->user?->name) {{ $subscription->payment?->user?->name }}
@endif @if($subscription->payment?->user?->email) {{ $subscription->payment?->user?->email }}
@endif @if($subscription->payment?->user?->phone_number) {{ $subscription->payment?->user?->phone_number }}
@endif @if($subscription->payment?->user?->address) {{ $subscription->payment?->user?->address }} @endif
{{ __('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') }}

{{ __('Thank you from') }} {{ get_option('app_name') }} {{ __('family') }}