@vite(['resources/css/app.css'])
Thank You for Your Order!

Order Summary

@php $cartData = json_decode($checkout->cart_data, true); $grandTotal = $cartData['grand_total'] ?? 0; unset($cartData['grand_total']); @endphp @foreach($cartData as $item)
{{ $item['name'] }}

{{ $item['name'] }}

Price: ₱{{ number_format($item['price'], 2) }}

Shipping: ₱{{ number_format($item['shippingFee'] ?? 0, 2) }}

Quantity: {{ $item['quantity'] }}

@endforeach
Grand Total: ₱{{ number_format($grandTotal, 2) }}

Customer Information

Name: {{ $checkout->first_name }} {{ $checkout->last_name }}

Phone: {{ $checkout->phone }}

Address: {{ $checkout->address }}, {{ $checkout->barangay }}, Zip: {{ $checkout->zip_code }}

Proof of Payment

@if($checkout->proof_of_payment) Proof of Payment @else

No proof of payment uploaded.

@endif