@extends('panel.layout.app') @section('title', __('Order #'.\Illuminate\Support\Str::upper($invoice->order_id))) @section("additional_css") @endsection @section('content')

{{__('Order Ref')}}               : {{\Illuminate\Support\Str::upper($invoice->order_id)}}

{{__('Order Date/Time')}} : {{date("j.n.Y", strtotime($invoice->created_at))}} - {{date("H:i:s", strtotime($invoice->created_at))}}

{{__('Client')}}

{{$invoice->user->fullName()}}
{{$invoice->user->country}}
{{$invoice->user->email}}
{{$invoice->user->phone}}

{{$setting->invoice_name}}

{{$setting->invoice_address}}
{{$setting->invoice_state}}{{isset($setting->invoice_city) ? ",":"";}} {{$setting->invoice_city}}
{{$setting->invoice_country}}{{isset($setting->invoice_city) ? ",":"";}} {{$setting->invoice_postal}}
{{$setting->invoice_website}}
{{$setting->invoice_phone}}
@if(isset($invoice->tax_rate) and $invoice->tax_rate > 0) @else @endif
{{__('Product')}} {{__('Qnt')}} {{__('Unit')}} {{__('Amount')}}
1

{{@$invoice->plan->name ?? __('Archived Plan') }}

@if($invoice->type == 'subscription') {{__('Subscription Plan Payment')}} @else {{__('Prepaid Plan Payment')}} @endif
1 @if(currencyShouldDisplayOnRight(currency()->symbol)) {{$invoice->price}}{{currency()->symbol}} @else {{currency()->symbol}}{{$invoice->price}} @endif @if(currencyShouldDisplayOnRight(currency()->symbol)) {{$invoice->price}}{{currency()->symbol}} @else {{currency()->symbol}}{{$invoice->price}} @endif
{{__('Subtotal')}} @if(currencyShouldDisplayOnRight(currency()->symbol)) {{$invoice->price - $invoice->tax_value}}{{currency()->symbol}} @else {{currency()->symbol}}{{$invoice->price - $invoice->tax_value}} @endif
{{__('Vat Rate')}} {{$invoice->tax_rate}}%
{{__('Vat Due')}} @if(currencyShouldDisplayOnRight(currency()->symbol)) {{$invoice->tax_value}}{{currency()->symbol}} @else {{currency()->symbol}}{{$invoice->tax_value}} @endif -
{{__('Total Due')}} @if(currencyShouldDisplayOnRight(currency()->symbol)) {{$invoice->price}}{{currency()->symbol}} @else {{currency()->symbol}}{{$invoice->price}} @endif

{{__('Thank you very much for doing business with us. We look forward to working with you again!')}}

@endsection