| Supplier |
Product |
Price |
Quantity |
Total |
@foreach($order->order_items()->get() as $item)
@php $product = $item->product()->get()->first(); @endphp
@php $product_item = $item->product_item()->get()->first(); @endphp
@php $supplier = $product->suppliers()->get()[0]; @endphp
|
{{ $supplier->name}}
|
{{ $product->name}}
@if($product_item)
- {{$product_item->name}}
@endif
|
£{{ number_format( $item->price, 2)}}
|
{{ $item->quantity}}
|
£{{ number_format( $item->total, 2)}}
|
@endforeach
|
|
Sub-Total:
£{{ number_format(($order->total - $order->DeliveryPrice), 2) }}
|
|
|
Delivery:
£{{ number_format($order->DeliveryPrice, 2) }}
|
|
|
Paid so far:
£{{ number_format(($order->AmountPaid), 2) }}
|
|
|
Balance Remaining:
£{{ number_format(($order->AmountRemaning), 2) }}
Pay Now
|