@extends('layouts.main') @section('page-id', '6037d3477f923a851e844852') @section('body-class', 'pale-green') @section('content')
| Order Details - |
Order Number: {{ $order->identifier }}
Placed: {{ date('d/m/Y', strtotime($order->created_at)) }}
Status: {{ ucfirst($order->status) }}
|
|||
|---|---|---|---|---|
| Product | Qty | Price | ||
|
{{ $line_item->product->name }}
@if ($line_item->addons || $line_item->field_id || $line_item->remove_clover)
You require {{ ($costResults[$line_item->id]['quantity'] * 1) }} kg and we will supply you {{ ($costResults[$line_item->id]['rounded_quantity'] * 1) }} kg.
@endif
This is due to our product being supplied in multiples of {{ ($line_item->product->multiple_size * 1) }} {{ $line_item->product->multiple_unit }}{{ $line_item->product->multiple_unit !== "kg" ? " packs" : "" }}. |
{{ ($line_item->quantity * 1) }} {{ ucfirst($line_item->unit) }} ({{ ($costResults[$line_item->id]['rounded_quantity'] * 1) }} Kg) |
£{{ number_format($line_item->total, 2) }} | ||
| Sub Total: | £{{ $order->sub_total }} | |||
| Delivery Charge: | {{ $order->delivery_total === '0.00' ? 'Free' : '£' . $order->delivery_total }} | |||
| VAT Total: | £{{ $order->vat_total }} | |||
| Total: | £{{ $order->total }} | |||
|
||||
| Order Details - |
Order Number: {{ str_pad($order->id, 5, 0, STR_PAD_LEFT) }}
Placed: {{ date('d/m/Y', strtotime($order->created_at)) }}
Status: {{ ucfirst($order->status) }}
|
|||
|---|---|---|---|---|
| Product | Qty | Price | ||
|
{{ $line_item->product->name }}
@if (count($line_item->addons) > 0)
|
{{ $line_item->quantity }} | £{{ number_format(($line_item->unit_cost * $line_item->quantity), 2) }} | ||
| Delivery Charge: | {{ $order->delivery_total === '0.00' ? 'Free' : $order->delivery_total }} | |||
| Total: | £{{ $order->total }} | |||
|
||||