@extends('frontend.components.layout') @section('title') Checkout @endsection @push('css') @endpush @section('topmenu') @include('frontend.components.topmenu') @endsection @section('content') {{-- @if ($errors->any()) @endif --}}
@csrf
  • Shipping Address

@if (session('message'))
{{ session('message') }}
@endif
@error('name')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
@error('address')
{{ $message }}
@enderror

Payment Methods

Summary

@foreach (\Cart::content() as $item) @endforeach
product

{{ $item->name }}

Price: {{ $item->price }}
{{-- --}} {{-- --}}
{{ $item->price * $item->qty }}

Sub Total ৳ {{ Cart::subtotal() }}
Estimated Delivery Charge
(Inside Dhaka City)
৳ 60

Order Total ৳ {{ number_format((float) str_replace(',', '', Cart::subtotal()) + 60.0, 2) }}

অর্ডারটি কনফার্ম করতে ফর্মটি সম্পুর্ণ পুরণ করে নিচের Place Order বাটনে ক্লিক করুন।

@endsection @push('js') @endpush