@extends('layouts.front_end') @section('title', 'Checkout') @section('content')
@if (isset($language->checkout_page_header_title)) {{$language->checkout_page_header_title}} @else Quick Checkout @endif
@csrf
@if(!Auth::user())
{{-- @if(Auth::user()){{Auth::user()->mobile}}@endif--}} {{-- --}}
@endif @if(Auth::user())
@endif
{{-- Start Cart Product --}}
@if (isset($language->ordered_product_title)) {{$language->ordered_product_title}} @else Ordered Product @endif
@php $totalPrice = 0; $totalCashBack = 0; @endphp @if($cardBadge['data']['products']) @php $totalPrice = $cardBadge['data']['total_price'] @endphp {{-- --}} @foreach($cardBadge['data']['products'] as $productId => $product) @php $db_product_slug = \App\Models\Backend\ProductInfo\Product::where(['id'=>$product['product_id']])->first(['slug']); $min_order_quantity = $product['minimum_order_quantity']; if($product['is_multiplication'] == 1){ $min_order_quantity = $product['multiplication_value']; } @endphp @endforeach
পণ্যPrice Quantity SUBTOTAL
{{--

--}} @if(strlen($product['Info']['product_name'])>23) {{ substr($product['Info']['product_name'], 0,22).'...' }} @else {{ $product['Info']['product_name'] }} @endif
@if(isset($product['modelData']) && count($product['modelData']) > 0)

@foreach($product['modelData'] as $mmodel) @php $mm = (array)$mmodel; @endphp {{$mm['model']}} - {{$mm['qty']}} , @endforeach

@endif @if($product['is_have_stock'] == 0)
Out of Stock @endif
{{--

--}} {{--

Cramond Leopard & Pythong Anorak

65% poly, 35% rayon --}}
@if($currencySymbol) {{ $currencySymbol->symbol }} @endif {{ $product['unit_price'] }}
@if($product['product_type'] == '1') {{ $product['quantity'] }} @else
-
+
@endif

@if($currencySymbol) {{ $currencySymbol->symbol }} @endif {{ $product['total_price'] }}
@else
@if(isset($language->no_product_in_shopping_bag_alert_text)) {{$language->no_product_in_shopping_bag_alert_text}} @else অর্ডার করতে পণ্য যুক্ত করুন!! @endif {{-- @if($null_product_message) {{ $null_product_message }} @endif --}}
@endif
{{-- End Cart Product --}}
@if (isset($language->bill_total_title)) {{$language->bill_total_title}} @else Bill Total @endif
    {{--
  • SUBTOTAL: @if($currencySymbol) {{ $currencySymbol->symbol }} @endif {{ $cardBadge['data']['total_price'] }}
  • --}}
  • @if (isset($language->sub_total)) {{$language->sub_total}} - @else Subtotal - @endif @if($currencySymbol) {{ $currencySymbol->symbol }} @endif {{ $totalPrice }}

  • SHIPPING -
    @if($shipping_charge) @foreach ($shipping_charge as $shippingCharge )
    {{$shippingCharge->title}}: {{$shippingCharge->shipping_fee}} {{-- --}}
    @endforeach @else
    FREE SHIPPING {{-- --}}
    @endif
  • @if($deductible_cash_back_amount > 0)
  • পূর্বের অর্ডারের ক্যাশ ব্যাক - @if($currencySymbol) {{ $currencySymbol->symbol }} @endif {{$deductible_cash_back_amount}}
  • @endif
  • @if (isset($language->discount)) {{$language->discount}} - @else Discount - @endif @if($currencySymbol) {{ $currencySymbol->symbol }} @endif {{$cardBadge['data']['coupon_discount']}}
  • {{-- সর্বমোট বিল: @if($currencySymbol) {{ $currencySymbol->symbol }} @endif {{ $cardBadge['data']['total_price'] }} --}}
    @if (isset($language->total)) {{$language->total}} - @else Total - @endif @if($currencySymbol) {{ $currencySymbol->symbol }} @endif {{ $totalPrice - $deductible_cash_back_amount - $cardBadge['data']['coupon_discount']}}



* I have read and agree to the website terms and conditions
@if($any_produdct_stockout == 0) @else @endif

@endsection @section('script') @endsection