ORDER SUMMARY
@php
$subtotal = 0;
foreach ($products as $product) {
$subtotal += $product->price * $cart[$product->id];
}
$shipping_fee_total = $shipping_fee->sum('shipping_fee');
@endphp
Subtotal
₱{{ number_format($subtotal, 2) }}
Shipping Fee
₱{{ number_format($shipping_fee_total, 2) }}
Estimated Total
₱{{ number_format($shipping_fee_total + $subtotal, 2) }}