|
Invoice ID - #{{ $ItemData->invoice_no }} Order Number - {{ $orderId }} Order date - {{ date('m/d/Y h:i A', strtotime($ItemData->created_at)) }} Payment status - @if($ItemData->paid_date >= $today) Complete @else Open @endif Shipping status - @if($ItemData->shipping_status) {{ $ItemData->shipping_status }} @else Pending @endif |
|
| Billing address | Delivery address |
|---|---|
|
{{ ucfirst($ItemData->fname.' '. $ItemData->lname) }} Phone: {{ $ItemData->billing_phone }} E-Mail-ID: {{ $ItemData->email }} {{ $ItemData->billing_street_no }} {{ $ItemData->billing_postcode }} {{ $ItemData->billing_location }} {{ $ItemData->billing_county }} {{ $ItemData->billing_adress }} |
@if(!empty($ItemData->office_name) && $ItemData->product_type == 'Kaufen')
{{ $ItemData->office_name }} @elseif(!empty($ItemData->office_name) && $ItemData->product_type == 'Verkaufen')Delivery address{{ $ItemData->office_name }} @else{{ ucfirst($ItemData->fname.' '. $ItemData->lname) }} Phone: {{ $ItemData->billing_phone }} E-Mail-ID: {{ $ItemData->email }} {{ $ItemData->delivery_adress }} {{ $ItemData->delivery_address }} {{ $ItemData->delivery_postcode }} {{ $ItemData->delivery_location }} {{ $ItemData->delivery_country }} @endif |
| Payment Method | Shipping Method |
|---|---|
| Cash On Delivery | Free Shipping - Free Shipping |
| Title | Net Unit Price | Unit Price Gross | Gross Value of Goods | VAT Rate | Quantity |
|---|---|---|---|---|---|
| {{ $order->product_name }} | {{ config('app.symbol') }}{{ $order->unit_price_net }} | {{ config('app.symbol') }}{{ $order->unit_price_gross }} | {{ config('app.symbol') }}{{ $order->goods_value_gross }} | 0 % | {{ $order->quantity }} |
|
Subtotal: @if($ItemData->coupon_name)Rabatt ({{ $ItemData->coupon_name }}): @endif @if($ItemData->goldinvest_type)Shipping costs: @endifTOTAL: {{ config('app.symbol') }}{{ $ItemData->sub_total }} @if($ItemData->coupon_name){{ $order->coupon_value }} @endif @if($ItemData->goldinvest_type){{ config('app.symbol') }}{{ $order->collection_goldinvest }} @endif{{ config('app.symbol'); }} {{ $order->sub_total }} |
|||||