@extends('frontend.components.layout') @section('title') Review and Payment @endsection @section('topmenu') @include('frontend.components.topmenu') @endsection @section('content') {{-- @if ($errors->any()) @endif --}}

Ship To: Edit

{{ $shipping->name }}
{{ $shipping->address }}
{{ $shipping->phone }}
  • Payment Method

@csrf
@error('payment_type') {{ $message }} @enderror

Summary

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

{{ $item->name }}

Qty:{{ $item->quantity }}
৳ {{ $item->price }}

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

Order Total ৳ {{ Cart::getSubTotal() + 60 }}

@endsection