@extends('site.master') @section('title','Checkout') @section('content') @include('site.layouts.breadcrumb')
@csrf

Billing Address

@if($errors->has('full_name'))
{{ $errors->first('full_name') }}
@endif
@if($errors->has('phone_number'))
{{ $errors->first('phone_number') }}
@endif
@if($errors->has('full_address'))
{{ $errors->first('full_address') }}
@endif

Shipping Address

@if($errors->has('shipping_full_name'))
{{ $errors->first('shipping_full_name') }}
@endif
@if($errors->has('shipping_phone_number'))
{{ $errors->first('shipping_phone_number') }}
@endif
@if($errors->has('shipping_full_address'))
{{ $errors->first('shipping_full_address') }}
@endif

Cart Total

Product Total

    @if(session('cart')) @foreach(session('cart') as $id => $details)
  • {{ $details['name'] }} ৳ {{ $details['price'] * $details['quantity'] }}
  • @endforeach @endif
@php $total = 0 @endphp @foreach((array) session('cart') as $id => $details) @php $total += $details['price'] * $details['quantity'] @endphp @endforeach

Sub Total ৳ {{ $total }}

Shipping Fee 00

Grand Total {{ $total }}

Payment Method

Cash on delivery (COD) is when a recipient pays for a good or service at the time of delivery.

Online Payment.For Cashless Transaction.

You Can Pay with Equated Monthly Installment (EMI) using your Credit Card.

@if($errors->has('payment_method'))
{{ $errors->first('payment_method') }}
@endif
@if($errors->has('accept_terms'))
{{ $errors->first('accept_terms') }}
@endif
@stop @section('page_scripts') @endsection