@extends('layouts.front.front') @section('maincontent')
{{-- CHECKOUT PART --}} @if(empty(session()->get('customerId')))
USER DETAILS
@else
SHIPPING & BILLING INFO
Add Your Shipping Address
Add Your Billing Address
PAYMENT METHOD
  • CASH ON DELIVERY

    Pay the full amount when you receive your order

  • NETBANKING
  • DEBIT CARD / CREDIT CARD
@endif {{-- CHECKOUT PART --}}

Cart Summary

Cart Total {{ $homepageModel->formatCurrencyWithDecimal($cartInfo['cartDetails']['totalMrp']) }}
@foreach ($discounts as $k => $v) @if ($v > 0)
{{ $k }} {{ $homepageModel->formatCurrencyWithDecimal($v) }}
@endif @endforeach @foreach ($totals as $k => $v) @if ($v > 0)
{{ $k }} {{ $homepageModel->formatCurrencyWithDecimal($v) }}
@endif @endforeach
Shipping {{ $homepageModel->formatCurrencyWithDecimal($cartShipping) }}

Shipping charges to be calculated on Checkout

@if (session()->get('customerId') > 0)

Promo Code

TOTAL PAYABLE {{ $homepageModel->formatCurrencyWithDecimal($totals['Payable']) }}
@else
@endif
@endsection @section('extraJS') @endsection