@extends('app') @push('css') @endpush @section('content') @php $ecomm_setting = DB::table('ecommerce_settings')->first(); $cart_price = $ecomm_setting->cart_price ?? 0; $payment_options=DB::table('pos_setting')->first()->payment_options; @endphp
@php $total=0; $coupon=isset(getCouponDiscount()['amount'])?getCouponDiscount()['amount']:0; $is_free = 1; @endphp @foreach($cart as $key=>$item) @php $sub_total=$item['price']*$item['quantity']; $total +=$sub_total; if ($item['free_ship'] != 1) { $is_free = 0; } @endphp @endforeach
@include('partials.checkoutTable')
@if(session('message'))
{{ session('message') }}
@endif
অর্ডার কনফার্ম করতে আপনার নাম, ঠিকানা ও মোবাইল নাম্বার দিয়ে "অর্ডার কনফার্ম করুন" বাটনে ক্লিক করুন।
@csrf
{{ BanglaText('name') }} check()) readonly @endif > @error('name')
{{ $message }}
@enderror
{{ BanglaText('mobile') }} check()) readonly @endif> @error('mobile')
{{ $message }}
@enderror
{{ BanglaText('address') }} @error('address')
{{ $message }}
@enderror
@error('shipping_charge')
{{ $message }}
@enderror
@if($total >= $cart_price || $is_free) @else @foreach($charges as $charge) @endforeach @endif
{{-- Hidden input to store selected charge --}}
@if( str_contains($payment_options,'bkash') || str_contains($payment_options,'sslcommerz'))
@if(str_contains($payment_options,'cash'))
@endif @if(str_contains($payment_options,'bkash'))
@endif @if(str_contains($payment_options,'sslcommerz'))
@endif

@endif
অর্ডার করতে সমস্যা হলে WhatsApp Call Us
@php $eventId = 'IC_' . now()->format('YmdHi'); @endphp @endsection @push('js') @endpush