@extends('app') @push('css') @endpush @section('content') @php //use App\Models\EcommerceSetting; //$cart_price=EcommerceSetting::first()->cart_price; $item = Cache::get('site_status'); $ecomm_setting = $item ? json_decode($item) : null; $cart_price = $ecomm_setting->cart_price ?? 0; $payment_options=DB::table('pos_setting')->first()->payment_options; @endphp
@php $total=0; @endphp @foreach($cart as $key=>$item) @php $sub_total=$item['price']*$item['quantity']; $total +=$sub_total; @endphp @endforeach
@include('partials.checkoutTable')

Billing address

@csrf
@if($errors->has('mobile'))
{{ $errors->first('name') }}
@endif
@if($errors->has('mobile'))
{{ $errors->first('mobile') }}
@endif
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif
@if(str_contains($payment_options,'cash') || 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

Order Details

Arai Mithai Combo
3.3 Kg
Price Tk1,450
মোবাইল নম্বরটি অবশ্যই শূন্য থেকে শুরু হবে
Subtotal
Tk1,450
Delivery Charge
Tk100
Subtotal
Tk1,550
@endsection @push('js') @endpush