@extends('template.main-template') @section('content')

1. Order Summary

    @foreach ($cart as $cItem)
  • {{ $cItem->product_qt }}x {{ $cItem->productData->product_title }} {{ formatMoney($cItem->product_value_subtotal, true) }} @if ($cItem->product_variations) @if (count(json_decode($cItem->product_variations)) > 0)
    @foreach (json_decode($cItem->product_variations) as $variation) {!! $variation !!} @endforeach
    @endif @endif
  • @endforeach
    • Subtotal {{ formatMoney($orderResum->value_purchase, true) }}
    • @if ($orderResum->cupom_code !== null)
    • Coupon {{ $orderResum->cupom_code }} (-{{$orderResum->value_discount}}%)
    • @endif
    • Tax Rate {{ formatMoney($orderResum->tax_value, true) }}
    • Shipping {{ formatMoney($orderResum->value_shipping, true) }}
TOTAL @php $total = $orderResum->value_total + $orderResum->tax_value + $orderResum->value_shipping; @endphp {{ formatMoney($total, true) }}

2. Payment

{{--
--}}
@csrf @endsection @push('javascript') @endpush @push('css') @endpush