Order Summary
@if (session('fail'))
@if(is_array(session('fail')))
    @foreach(session('fail') as $fail)
  • {{ $fail }}
  • @endforeach
@else
  • {{ session('fail') }}
@endif
@endif
You have {{ count($get_cart["cart"]) }} in your cart.
@foreach($get_cart["cart"] as $cart) @endforeach
Product Qty. Price
{{ $cart["cart_product_information"]["product_name"] }} {{ $cart["quantity"] }} ₱ {{ number_format($cart['quantity'] * $cart["cart_product_information"]["product_price"], 2) }}
@if($get_cart["tbl_ec_order"]["shipping_fee"] != 0 || $get_cart["tbl_ec_order"]["service_fee"] != 0)
₱ {{ number_format($get_cart["tbl_ec_order"]["subtotal"], 2) }}
Subtotal
@endif @if($get_cart["tbl_ec_order"]["shipping_fee"] != 0)
₱ {{ number_format($get_cart["tbl_ec_order"]["shipping_fee"], 2) }}
Shipping Fee
@endif @if($get_cart["tbl_ec_order"]["service_fee"] != 0)
₱ {{ number_format($get_cart["tbl_ec_order"]["service_fee"], 2) }}
Transaction Fee
@endif
@if($get_cart["tbl_ec_order"]["discount_coupon_amount"] != 0)
₱ {{ number_format($get_cart["tbl_ec_order"]["discount_coupon_amount"], 2) }}
Coupon Discount
@endif
₱ {{ number_format($get_cart["tbl_ec_order"]["total"] - $disc, 2) }}
Total