@extends('layouts.market')
@section('content')
CART
@foreach($categories as $category)
{{ $category->name }}
@foreach($category->products as $product)
{{$product->name}}
UGX {{ number_format($product->unit_price)}} per {{ $product->unit_of_measure}}
@include('market.model')
@endforeach
@endforeach
@endsection