@extends('layouts.main') @section('title', 'Cart Details') @section('main')
Brand: {{ $item['brand'] }}
Price: ${{ $item['variable_details']['listed_price'] }}
@foreach ($item['attribute_keys'] as $attributeKey){{ str_replace('_',' ', ucfirst($attributeKey)) }}: {{ $item['variable_details'][$attributeKey] ?? 'N/A' }}
@endforeachQuantity:
Your cart is empty.
@endif