@extends('layouts.front') @section('content')
1 @lang('Address')
2 @lang('Details')
3 @lang('Payment')
@csrf

@lang('Personal Information')

@if (!Auth::check())
@endif

@lang('Billing Details')

@lang('Shipping Address')

@lang('Summery')

@lang('Price Details')
@lang('Total MRP') {{ Session::has('cart') ? App\Models\Product::convertPrice(Session::get('cart')->totalPrice) : '0.00' }}
@lang('Tax') 0
@if (Session::has('coupon'))
@lang('Discount') {{ Session::get('coupon_percentage') == 0 ? '' : '(' . Session::get('coupon_percentage') . ')' }} @if ($gs->currency_format == 0) {{ $curr->sign }}{{ Session::get('coupon') }} @else {{ Session::get('coupon') }}{{ $curr->sign }} @endif
@else
@lang('Discount') {{ $curr->sign }}{{ Session::get('coupon') }}
@endif @if ($digital == 0)
@lang('Shipping Cost') {{ App\Models\Product::convertPrice(0) }}
@lang('Packaging Cost') {{ App\Models\Product::convertPrice(0) }}
@endif

@lang('Final Price') @if (Session::has('coupon_total')) @if ($gs->currency_format == 0) {{ $curr->sign }}{{ $totalPrice }} @else {{ $totalPrice }}{{ $curr->sign }} @endif @elseif(Session::has('coupon_total1')) {{ Session::get('coupon_total1') }} @else {{ App\Models\Product::convertPrice($totalPrice) }} @endif
@php @endphp @if (Session::has('coupon_total')) @elseif(Session::has('coupon_total1')) @else @endif
@endsection @section('script') @endsection