@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
আপনার অর্ডারটি কনফার্ম করতে তথ্যগুলো পূরণ করে "অর্ডার করুন" বাটন এ ক্লিক করুন অথবা ফোনে অর্ডার করতে এই নাম্বার {{$contact->hotline}} এর উপরে ক্লিক করুন।
@error('name') {{ $message }} @enderror
@error('phone') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@if($bkash_gateway)
@endif @if($shurjopay_gateway)
@endif
অর্ডারের তথ্য
@foreach (Cart::instance('shopping')->content() as $value) @endforeach
ডিলিট প্রোডাক্ট পরিমাণ মূল্য
{{ Str::limit($value->name, 20) }} @if ($value->options->product_size)

Size: {{ $value->options->product_size }}

@endif @if ($value->options->product_color)

Color: {{ $value->options->product_color }}

@endif
{{ $value->price }}
মোট {{ $subtotal }}
ডেলিভারি চার্জ {{ $shipping }}
সর্বমোট {{ $subtotal + $shipping }}
@endsection @push('script') @endpush