Track your order

Your invoice for order: #{{ $data['order_id'] }}

Hi {{ $data['fullname'] }},

Here are the details of your order placed on {{ $data['date'] }}:

[Order #{{ $data['order_id'] }}] ({{ $data['date'] }}) @php $total = 0 @endphp @foreach($data['cart_order_items'] as $item) @php $total += $item['product_quantity']*$item['product_price']; @endphp @endforeach
Product Unit Price Quantity Unit Total
{{ $item['product_name'] }} ₱{{ number_format($item['product_price'], 2) }} {{ $item['product_quantity'] }} ₱{{ number_format($item['product_price']*$item['product_quantity'], 2) }}
Subtotal: ₱{{ number_format($total, 2) }}
Payment method: {{ $data['payment_method'] }}
Total: ₱{{ number_format($total, 2) }}
Billing Address
{{ $data['fullname'] }}
{{ $data['billing_address'] }}
{{ $data['phone_number'] }}
Shipping Address
{{ $data['fullname'] }}
{{ $data['shipping_address'] }}
{{ $data['phone_number'] }}