@extends('frontend.layouts.user.master') @section('title', 'Dashboard') @section('content')
{{ $order->user->first_name . ' ' . $order->user->last_name }}
{{ $order->user->email }}
{{ $order->user->phone }}
{{ $shippingAddress->first_name . ' ' . $shippingAddress->last_name }}
{{ $shippingAddress->email }}
{{ $shippingAddress->phone }}
{{ $shippingAddress->address_line_1 }}
{{ $shippingAddress->address_line_2 }}
{{ $shippingAddress->city }}
{{ $shippingAddress->post_code }}
Name: {{ $pickupAddress->name }}
Phone: {{ $pickupAddress->phone }}
Note: {{ $pickupAddress->note }}
Order ID: {{ $order->order_number }}
Order Date:
{{ $order->created_at->format('d M Y, h:i A') }}
Order Total: £{{ $order->grand_total }}
| Products | Price | Quantity | Total |
|---|---|---|---|
{{ $item->product->name }}{{ $item->product->specification }} |
£{{ $item->price }} | {{ $item->quantity }} | £{{ $item->total_amount }} |
| Items Sub Total | £{{ $order->total_amount }} | ||
| Shipping Charges | @if (is_null($order->shipping_charges)) Still not added @else £{{ $order->shipping_charges }} @endif | ||
| VAT Tax ({{ $order->vat_tax_percentage }}%) | £{{ $order->vat_tax_amount }} | ||
| Grand Total | £{{ $order->grand_total }} |
REASON FOR CANCELLATION: {{ $order->cancelled_reason }}