@if($item->options != null || count($item->getProduct->getExtras) > 0)
@if($item->options)
@foreach(json_decode($item->options) as $key => $option)
{!! $key !!} @if(count($option) > 0) @foreach($option as $op) {{ $op }} @endforeach @endif
@endforeach
@endif @if(count($item->getProduct->getExtras) > 0)
@if(count($item->getExtras) > 0)
Extras Agregados:
@foreach($item->getExtras as $extadd)
{{ $extadd->label }} {{ number($extadd->price) }}
@endforeach
@endif @foreach($item->getProduct->getExtras as $extra)
  • {{ $extra->title }}
  • @foreach($extra->getOptions as $ext)
  • {!! $ext->name !!} + {{ number($ext->price) }}
  • @endforeach
@endforeach
@endif
@endif