Thanks for your order!

Your Order Id Is: #{{ $mailData['order']->id }}

Products

@foreach( $mailData['order']->items as $item ) @endforeach
Producto Price Qty Total
{{ $item->name }} ${{ number_format($item->price,2) }} {{ $item->qty }} ${{ number_format($item->total,2) }}
Subtotal: ${{ number_format($mailData['order']->subtotal,2) }}
Discount: {{ !empty($mailData['order']->coupon_code) ? '('.$mailData['order']->coupon_code.')' : ''}} ${{ number_format($mailData['order']->discount,2) }}
Shipping: ${{ number_format($mailData['order']->shipping,2) }}
Grand Total: ${{ number_format($mailData['order']->grand_total,2) }}