@extends('layout.default') @section('content') @section('page_toolbar')   Back @endsection
Billing Address :
{{ $order->billing_first_name }} {{ $order->billing_last_name }}
{{ $order->billing_address1 }}
@if($order->billing_address2!='') {{ $order->billing_address2 }}
@endif {{ $order->billing_city }}, {{ $order->billing_postcode }}
{{ $order->billing_country }}
Phone: {{ $order->billing_phone }}
Email: {{ $order->billing_email }}
Invoice No: {{ $order->invoice_no }}
Ordered On: {{ $order->created_at }}
Payment Status: {{ $order->payment_status }}
Order Status: {{ $page->order_status[$order->order_status] }}
@if(count($order->details)) @foreach($order->details as $detail) @endforeach @endif @if($order->discount==0 && $order->discount_coupon!=NULL) @elseif($order->discount!=0) @endif @if($order->shipping_amount!=0) @endif @if($order->tax!=0) @endif
No. Product Price
{{ $loop->iteration }} {!! $detail->title !!} @if($detail->sub!='')
{!! $detail->sub !!} @endif
{!! $detail->amount==0?'Free':'£'.number_format($detail->amount,2) !!} @if($detail->sub_price!=0)
+ £{{ number_format($detail->sub_price,2) }} @endif
Total Amount : £ {{ number_format($order->total_amount,2) }}
Coupon Used : {{ $order->discount_coupon }}
Discount Amount : @if($order->discount_coupon!=NULL) [ Coupon Used : {{ $order->discount_coupon }}] @endif £ {{ number_format($order->discount,2) }}
Shipping Amount : £ {{ number_format($order->shipping_amount,2) }}
VAT @ 20% : £ {{ number_format($order->tax,2) }}
Grand Amount : £ {{ number_format($order->grand_total,2) }}
@endsection