@extends("frontend.layout.master") @section('title','Emart | Checkout') @section("content")

{{__('C.')}} {{__('Billing Information')}}

@csrf
@if ($pincodesystem == 1)
@endif

{{__('D. Order Review')}}

{{__('E. Payment Info')}}

{{__('Payment Details')}}

@if(Session::get('gift')) @endif @if(Auth::check() && App\Cart::isCoupanApplied() == 1) @endif
{{__('Subtotal')}} {{price_format($total*$conversion_rate,2)}}
{{ __('Gift Discount') }} {{Session::get('gift')['discount']}}
{{ __('Discount') }} {{price_format(App\Cart::getDiscount()*$conversion_rate,2)}}
{{ __('Total') }} @if(!App\Cart::isCoupanApplied() == 1) @if(Session::get('gift')) {{price_format($grandtotal*$conversion_rate,2) - Session::get('gift')['discount']}} @else {{price_format($grandtotal*$conversion_rate,2)}} @endif @else @if(Session::get('gift')) {{price_format(($grandtotal-App\Cart::getDiscount())*$conversion_rate,2) - Session::get('gift')['discount']}} @else {{price_format(($grandtotal-App\Cart::getDiscount())*$conversion_rate,2)}} @endif @endif
@endsection @section('script')