@extends('app') @section('content')
{{$item->quantity}}
{{$item->size->name}}
{{$item->color ? $item->color->name : 'N/A'}}
{{ number_format($item->quantity * $item->combination->price, 2) }}
{{ number_format(Cart::subtotal($items), 2) }}
{{ number_format(Cart::shippingAmount($items),2) }}
{{ number_format(Cart::total($items),2) }}