@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 {{-- EXISTING CART DESIGN --}}
Your Cart ({{ count($cart['items']) }} item)
@foreach($cart['items'] as $item)
{{ $item['name'] }}

{{ $item['variant']['color'] ?? '' }}

QTY  
₹{{ number_format($item['price'], 2) }} ₹{{ number_format($item['mrp'], 2) }} ({{ $item['offer_percent'] }}% Off)

You Save ₹{{ number_format($item['mrp'] - $item['price'], 2) }}

@endforeach
@if(isset($cart['coupon']))
✔ {{ $cart['coupon']['code'] }}
Coupon Applied
@else @endif
Cart Summary
MRP ₹{{ number_format($cart['price_details']['sub_total'],2) }}
@if(isset($cart['coupon']))
Coupon Discount -₹{{ number_format($cart['coupon']['value'],2) }}
@endif
YOU PAY ₹{{ number_format($cart['price_details']['total'],2) }}

You Save ₹{{ number_format($cart['price_details']['discount'],2) }}

PROCEED TO CHECKOUT
@endif
@endsection