@extends('frontends.layouts.app') @section('content')
@if($cartItems->count() !== 0)
@csrf

Billing Details

@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if($errors->has('enterprise_name'))
{{ $errors->first('enterprise_name') }}
@endif
@if($errors->has('phone_number'))
{{ $errors->first('phone_number') }}
@endif
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif

Your Order

Product

Subtotal

@foreach($cartItems as $item)
{{ $item['title'] }}
{{ $item['title'] }} - {{ $item['weight'] }}

{{ $item['sales_price'] * $item['quantity'] }}

@endforeach

Subtotal

{{ $subTotal }}

Shipping

Total

0

Cash on delivery

Pay with cash upon delivery.

Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our privacy policy.

@elseif(session('orderSuccess'))

Your Order Placed has been Successfully.

We will contact with you as soon as.

Go to the Home Page

@else

Your cart is empty.

Go to the Home Page

@endif
@endsection