Full Name: {{ $userData['full_name'] }}
Email: {{ isset($userData['email'])?$userData['email']:'' }}
Phone: {{ $userData['phone'] }}
Address: {{ $userData['address'] }}
Product | Color | Price | Quantity | Total |
---|---|---|---|---|
{{ $item['name'] }} | {{ json_decode($item['color'], true)['name'] }} | ${{ number_format($item['price'], 2) }} | {{ $item['quantity'] }} | ${{ number_format($itemTotal, 2) }} |
Subtotal: ${{ number_format($subtotal, 2) }}
Shipping Cost: ${{ number_format($shippingCost, 2) }}
Total: ${{ number_format($total, 2) }}