@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()}}{{$setting->invoice_name}}
{{$setting->invoice_address}}{{__('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(isset($invoice->tax_rate) and $invoice->tax_rate > 0)@if(currencyShouldDisplayOnRight(currency()->symbol)) {{$invoice->tax_value}}{{currency()->symbol}} @else {{currency()->symbol}}{{$invoice->tax_value}} @endif | @else- | @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!')}}