@extends('clients.layouts.app') @section('title', 'Shopping Cart') @section('content')

Shopping Cart

Review your items and complete your order

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@forelse($cart as $index => $item)

{{ $item['name'] }}

{{ $item['type'] }}

{{ number_format($item['price'], 2) }} BDT

Yearly

@if($item['type'] === 'hosting')

Enter the domain you want to use with this hosting

@endif
@empty

Your cart is empty

Looks like you haven't added anything to your cart yet.

Continue Shopping
@endforelse
@if(!empty($cart))

Order Summary

Subtotal {{ number_format($total, 2) }} BDT
Setup Fees 0.00 BDT
Total Due {{ number_format($total, 2) }} BDT
@csrf

By clicking "Place Order", you agree to our
Terms of Service & Privacy Policy.

Secure 256-bit SSL encrypted payment processing. Your data is always safe.

@endif
@endsection