@extends('layout.template') @section('title','Cusella Home Furnishing | Curtains, Sofas, Wallpapers & Interior Solutions') @section('content')
@if(empty($cart['items']) || count($cart['items']) == 0) {{-- EMPTY CART DESIGN --}}

Your Cart is Empty

Looks like you haven’t added anything yet.

Continue Shopping
@else
@csrf

Billing Details

{{-- NAME --}}
{{-- PHONE --}}
{{-- COUNTRY --}}
{{-- ADDRESS --}}
{{-- CITY --}}
{{-- STATE --}}
{{-- PINCODE --}}
{{-- EMAIL --}}
{{-- SHIP TO DIFFERENT --}} {{-- SHIPPING SECTION --}}

Select Courier

@foreach($couriers as $courier)
@endforeach

Your order

  • Product Total
    @foreach($cart['items'] ?? [] as $item)
  • {{ $item['name'] }} × {{ $item['quantity'] }}
    ₹{{ $item['price'] }}
  • @endforeach
  • Subtotal ₹{{ $cart['price_details']['sub_total'] ?? 0 }}
@if(isset($cart['coupon']))
  • Coupon Discount -₹{{ number_format($cart['coupon']['value'],2) }}
@endif
  • Total ₹{{ $cart['price_details']['total'] ?? 0 }}
@endif
@endsection