|
Order Confirmation #
|
{{$order['order_no']}} |
|
Customer Name
|
Phone Number
|
Email
|
| {{$order['customer_name']}} |
{{$order['phone_no']}} |
{{$order['customer_email']}} |
|
Item
|
QTY
|
Amount
|
@foreach($orderItems as $item)
| {{ $item->product->product_name }}
@if($item->orderOptions!==null)
@forelse($item->orderOptions as $option)
@if($item->id == $option['order_item_id'])
({{ $option['option_name'] }})
@endif
@empty
@endforelse
@endif
|
{{ $item->product_qty }} |
${{ $item->product_per_price * $item->product_qty }} |
@endforeach
|
Purchased Item ({{ count($orderItems) }})
|
${{$order['sub_total'] ?? 0}} |
|
Tax
|
${{$order['tax'] ?? 0}} |
|
Shipping
|
${{$order['shipping_cost'] ?? 0}} |
|
Discount
|
${{$coupon['value'] ?? 0}} |
|
Coupon Name
|
{{$coupon['name'] ?? ''}} |