|
This email has been generated from the Rosewood Pet website.
Order Details
Web Reference Number | | #{{ $order->internal_reference }} |
Date | | {{ date('d/m/Y H:i',strtotime($order->created_at)) }} |
Customer Code | | {{ $order->customer->no }} |
Customer Name | | {{ $order->customer->name }} |
Username/Email | | {{ $user->email }} |
Customer Order Ref | | {{ $order->order_reference }} |
Order Summary
Product |
Quantity |
Value |
|
@foreach ($items as $item)
{{ $item->code }}: {{ $item->name }}
@foreach ($item->attributes() as $attribute=>$data)
({{ $data->value }})
@endforeach
|
{{ $item->quantity() }} |
£{{ number_format($item->subTotal(),2) }} |
@endforeach
|
|
Total: £{{ number_format(Cart::itemsSubtotal(),2) }} |
|
|
|