Code:
@if(Cart::count() > 0)
@php
dd(Cart::content());
@endphp
@endif
How can I access the "options" array? I can access id,qty & etc by simply running:
@foreach(Cart::content() as $item)
<tr>
<td>{{$item->name}}</td>
<td>{{$item->qty}}</td>
<td>{{$item->price}}</td>
</tr>
@endforeach
But $item[options]->size doesn't work.
