{{__('Cart')}}

@if($cart != null) @foreach ($cart as $key => $item) @php $id = $item["id"]; $product = App\Models\Product::findOrFail($id); @endphp
Item Image

{{convertUtf8($item['name'])}}

@if (!empty($item["variations"]))

{{__("Variation")}}:
@php $variations = $item["variations"]; @endphp @foreach ($variations as $vKey => $variation) {{str_replace("_"," ",$vKey)}}: {{$variation["name"]}} @if (!$loop->last) , @endif @endforeach

@endif @if (!empty($item["addons"]))

{{__("Add On's")}}: @php $addons = $item["addons"]; @endphp @foreach ($addons as $addon) {{$addon["name"]}} @if (!$loop->last) , @endif @endforeach

@endif
@endforeach @else
{{__('Cart is empty!')}}
@endif
{{__('Total')}} {{$be->base_currency_symbol_position == 'left' ? $be->base_currency_symbol : ''}}{{$cartTotal}}{{$be->base_currency_symbol_position == 'right' ? $be->base_currency_symbol : ''}}