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

Shopping Cart

Total: Rs {{ number_format($total, 0) }} Proceed to Checkout
@forelse($items as $key => $item)
{{ $item['name'] }}

{{ $item['name'] }}

Size: {{ $item['size'] ?? 'N/A' }}

Unit: Rs {{ number_format($item['price'], 0) }}

{{ $item['qty'] }}
Rs {{ number_format($item['price'] * $item['qty'], 0) }}
@empty

Your cart is empty.

@endforelse
Continue Shopping
@endsection