Hi {{ $data['fullname'] }},
Here are the details of your order placed on {{ $data['date'] }}:
[Order #{{ $data['order_id'] }}] ({{ $data['date'] }})
| Product |
Unit Price |
Quantity |
Unit Total |
@php $total = 0 @endphp
@foreach($data['cart_order_items'] as $item)
@php
$total += $item['product_quantity']*$item['product_price'];
@endphp
| {{ $item['product_name'] }} |
₱{{ number_format($item['product_price'], 2) }} |
{{ $item['product_quantity'] }} |
₱{{ number_format($item['product_price']*$item['product_quantity'], 2) }} |
@endforeach
| Subtotal: |
₱{{ number_format($total, 2) }} |
| Payment method: |
{{ $data['payment_method'] }} |
| Total: |
₱{{ number_format($total, 2) }} |
|
Billing Address
|
Shipping Address
|