@extends('frontend.partials.master') @push('css') @endpush @section('content') @php $item = Cache::get('site_status'); $ecomm_setting = $item ? json_decode($item) : null; $payment_options=DB::table('pos_setting')->first()->payment_options; @endphp
@php $total=0; $user = Auth::user(); @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,'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
@endsection @push('js') @endpush