@extends('layout.app') @section('content')
{{-- Top bar --}}
Cart

({{ $count }} item{{ $count !== 1 ? 's' : '' }})

@if(count($cart) > 0) @endif
{{-- ── Cart Table ── --}}
{{-- Empty state --}}
Your cart is empty

Looks like you haven't added anything yet.

Start Shopping
{{-- Table --}}
@foreach($cart as $key => $item) @endforeach
Product Price Quantity Total Action
{{ $item['name'] }}
{{ $item['name'] }} @if($item['color'] || $item['size'])

@if($item['color']) Color: {{ $item['color'] }} @endif @if($item['color'] && $item['size']), @endif @if($item['size']) Size: {{ $item['size'] }} @endif

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

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

{{-- ── Order Summary ── --}}
{{-- Free shipping bar --}} Spend $60.00 for Free Shipping
Order Summary
{{-- Coupon --}}
{{-- Totals --}}

Sub-Total ${{ number_format($subtotal, 2) }}

Shipping Free

Total ${{ number_format($subtotal, 2) }}
{{-- Buttons --}}

Quality is our priority

Because you deserve nothing less than the best.

Free Shipping

Enjoy the Convenience of Free Shipping on Every Order

24x7 Support

Round-the-Clock Assistance, Anytime You Need It

30 Days Return

Your Satisfaction is Our Priority: Return Any Product Within 30 Days

Secure Payment

Seamless Shopping Backed by Safe and Secure Payment Options

@endsection @push('scripts') @endpush