@extends('layouts.main') @section('title', 'Cart') @section('content')
@foreach ($cartItems as $item) @endforeach
ID Image Code Product Name Sell Price Qty UOM Action
{{ $item->id }} @if ($item->associatedModel->images) @foreach (json_decode($item->associatedModel->images) as $image) @endforeach @endif @if ($item->associatedModel) {{ $item->associatedModel->sku }} {{ $item->associatedModel->sellprice }} @endif {{ $item->name }} {{ $item->price }}
@endsection