@extends('front.layouts.master') @section('title', isset($title) ? $title : 'Home') @section('description', isset($description) ? $description : '') @section('keywords', isset($keywords) ? $keywords : '') @section('content')
@csrf
@if (!auth()->check())
@endif

{{ __('Billing Address') }}

{{ __('Shipping Address') }}

@error('shipping_name') {{ $message }} @enderror
@error('shipping_email') {{ $message }} @enderror
@error('shipping_street_address') {{ $message }} @enderror
@error('shipping_state') {{ $message }} @enderror
@error('shipping_zipcode') {{ $message }} @enderror
@error('shipping_country') {{ $message }} @enderror

{{ __('Payment Method') }}

@foreach ($paymentPlatforms as $payment) @if (session()->get('razorpay-tansaction') == true)
razorpay
@else @if ($payment->slug == 'btc')
payment-method
@endif @if ($payment->slug == 'erc20')
payment-method
@endif @if ($payment->slug == 'trc20')
payment-method
@endif @if ($payment->slug == 'bnb')
payment-method
@endif @if ($payment->slug == 'eth')
payment-method
@endif @if ($payment->slug == 'tron')
payment-method
@endif @if ($payment->slug == 'sslcommerz')
sslcommerz
@endif @if ($payment->slug == 'paypal')
paypal
@endif @if ($payment->slug == 'razorpay')
razorpay
@endif @if ($payment->slug == 'bank')
payment-method
{{ __('Bank Account Details:') }}
{{ __('Bank Name:') }} {{ env('BANK_NAME') }}
{{ __('Account Number:') }} {{ env('BANK_ACCOUNT_NUMBER') }}
{{ __('Account Holder:') }} {{ env('BANK_ACCOUNT_HOLDER_NAME') }}
{{ __('Branch:') }} {{ env('BANK_ACCOUNT_BRANCH') }}
{{ __('Swift Code:') }} {{ env('BANK_SWIFT_CODE') }}
{{ __('Routing Number:') }} {{ env('BANK_ROUTING_NUMBER') }}
@endif @endif @endforeach @if (env('COD_STATUS') == '1')
{{ env('COD_NAME') }}
@endif
@if (auth()->check()) @else @endif

{{ __('Cart Summary') }}

{{ __('Edit') }}
    @php $total = 0; @endphp @foreach ($content as $item)
  • {{ $item->qty }} {{ $item->name }}

    {{ __('Size:') }} {{ is_null($item->options->size) ? __('Free Size') : $item->options->size }}

    {{ __('Color:') }} @if (is_null($item->options->color)) {{ __('Any Color') }} @else @endif

    {{ currencyConverter($item->price * $item->qty) }}

  • @endforeach

{{ __('Discount Codes') }}

@csrf
  • {{ __('Subtotal') }} {{ currencyConverter(\Cart::subtotal()) }}
  • {{ __('Shipping Cost') }}
  • {{ __('VAT/Tax ') }} {{ currencyConverter(tax_amount(\Cart::subtotal())) }}
  • @if (!empty(Session::get('CouponAmount')))
  • {{ __('Coupon Discount (-)') }} {{ currencyConverter(Session::get('CouponAmount')) }}
  • @endif

{{ __('Total Cost') }} {{ currencyConverter(\Cart::subtotal() + allsetting()['shipping_charge'] + tax_amount(\Cart::subtotal()) - Session::get('CouponAmount')) }}

@push('post_script') @endpush @endsection