@extends('frontEnd.layouts.master') @section('title', 'Customer Checkout') @push('css') @endpush @section('content')
@php $subtotal = Cart::instance('shopping')->subtotal(); $subtotal = str_replace(',', '', $subtotal); $subtotal = str_replace('.00', '', $subtotal); $shipping = Session::get('shipping') ? Session::get('shipping') : 0; @endphp
@csrf
* অর্ডার করতে আপনার সম্পূর্ণ নাম, মোবাইল নম্বর ও ঠিকানা লিখে
অর্ডার কনফার্ম করুন বাটন এ ক্লিক করুন
@error('name') আপনার সম্পূর্ণ নাম লিখুন @enderror
+88
@error('phone') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@if($shipping != 0) @foreach ($shippingcharge as $key => $value)
@endforeach @error('area') {{ $message }} @enderror @else

ফ্রি ডেলিভারি

@endif
@if($bkash_gateway)
@endif @if($shurjopay_gateway)
@endif

আপনার অর্ডার
@foreach (Cart::instance('shopping')->content() as $value) @endforeach
Product Quantity Subtotal

{{Str::limit($value->name,20)}}

{{$value->qty}}xTK{{$value->price}}

TK {{$value->price * $value->qty}}
  • Subtotal

    Tk {{ $subtotal }}

  • Shipping

    Tk {{ $shipping }}

Total Tk {{ $subtotal + $shipping }}

@endsection @push('script') @endpush