@extends("layout") @if(Request::input('popup') == 1)
  CHECK OUT
Your order # {{ isset($order_id) ? $order_id : 0 }} is being processed.
Order Summary
@if(isset($_order) && count($_order) > 0)
@foreach($_order as $key => $order) @endforeach @if($coupon_disc != 0) @endif
Product Quantity Price
{{ $order->evariant_item_label }} {{ $order->quantity }} ₱ {{ number_format($order->total, 2) }}
Coupon Discount ₱ {{ number_format($coupon_disc, 2) }}
Total ₱ {{ number_format($summary['subtotal'] - $disc, 2) }}
@endif
@section("script") @endsection @endif @section("content")
  CHECK OUT
Your order is being processed.
@endsection