@extends('web.layout.master') @section('content') @include('web.checkout-header-v2')

Order Details

Order Details

   Shipping Address
{{ session()->get('shippingfirstname') }} {{ session()->get('shippinglastname') }}
@if(!empty(session()->get('shippingcompany'))) {{ session()->get('shippingcompany') }}
@endif

{{ session()->get('shippingstreetadress') }}

@if(!empty(session()->get('shippingstreetadress2')))

{{ session()->get('shippingstreetadress2') }}

@endif

{{ session()->get('shippingcity') }} {{ session()->get('shippingstate') }} {{ session()->get('shippingzipcode') }}

{{ session()->get('shippingcountry') }}

{{ session()->get('shippingemail') }}

@if(!empty(session()->get('shippingphone')))

{{ session()->get('shippingphone') }}

@endif

Expedited (2-4 Days) Shipping


     Billing Address
{{ session()->get('billingfirstname') }} {{ session()->get('billinglastname') }}
@if(!empty(session()->get('billingcompany'))) {{ session()->get('billingcompany') }}
@endif

{{ session()->get('billingstreetadress') }}

@if(!empty(session()->get('billingstreetadress2')))

{{ session()->get('billingstreetadress2') }}

@endif

{{ session()->get('billingcity') }} {{ session()->get('billingstate') }} {{ session()->get('billingzipcode') }}

{{ session()->get('billingcountry') }}

{{ session()->get('billingemail') }}


    Payment Method
@if(!empty(\Session::get('payment_option')) && \Session::get('payment_option') == 3)
@elseif(empty(\Session::get('paypal_order_id')) && (!empty(\Session::get('payment_option')) && \Session::get('payment_option') != 3))
@if(\Session::get('cardType') == 'mastercard') @else @endif
@if(!empty(\Session::get('card_number'))) .... .... {{ substr(\Crypt::decryptString(\Session::get('card_number')), -4) }}

Exp - {{ \Session::get('expiry_month') }}/{{ substr(\Session::get('expiry_year'), -4) }}

@else .... .... {{ substr(\Session::get('cardLastDigit'), -4) }} @if(!empty(\Session::get('cardExpMonth')))

Exp - {{ \Session::get('cardExpMonth') }}/{{ substr(\Session::get('cardExpYear'), -4) }}

@endif @endif
@else
{{ \Session::get('paypalemail') }}
@endif


@foreach($cartItems as $item)
Product Image

{{ $item->name }}

Product Code: {{ $item->id }}

Qty: {{ $item->quantity }}

{{ $item->quantity }} Qty

${{ str_replace(',','',number_format($item->price,2)) }}

@if(!$loop->last)
@endif @endforeach
ORDER SUMMARY

Loading....

@if(!empty(\Session::get('couponCode'))) Coupon code applied.  Remove @else    @endif


@csrf
Subtotal
${{ str_replace(',','',round(session()->get('subtotal'),2)) }}
get('discountPrice') <= 0) style="display: none" @endif>
Promo Code ({{ session()->get('couponCode') }} - {{ session()->get('couponDiscount') }})
- ${{ str_replace(',','',(session()->get('discountPrice'))) }}
Shipping @if(!empty(session()->get('ShippingSurcharges'))) (+${{ str_replace(',','',number_format(session()->get('ShippingSurcharges'),2)) }} surcharge) @endif
${{ str_replace(',','',number_format((session()->get('ShippingCharges') + session()->get('ShippingSurcharges')),2)) }}
Tax
${{ str_replace(',','',number_format(session()->get('ShippingTax'),2)) }}


Order Total
${{ str_replace(',','',round(session()->get('total'),2)) }}

By clicking Place order, you're agreeing to the terms and conditions.

Cart ID # {{ (!empty(\Cookie::get('cart')) ? \Cookie::get('cart') : "") }}


Having trouble? Contact us! 866.243.2721

@if(!empty(session()->get("payment_option")) && session()->get("payment_option") == 3) @endif @endsection