@foreach($cartItems as $cartItem)
|
}}) |
{{$cartItem->name}}
@php
$product = App\Product::find($cartItem->id);
@endphp
@if($cartItem->options->size != Null)
Size: {{$cartItem->options->size}}
@endif
@if($cartItem->options->color != Null)
Color: {{$cartItem->options->color}}
@endif
Edit
|
৳ {{$cartItem->price}} |
{{$cartItem->qty}}
@if($product->stock <= 5)
Only {{$product->stock}} {{$product->stock == 1 ? 'item' : 'items'}} in stock
@endif
|
৳ {{$cartItem->total}} |
@endforeach