@foreach ($context->organization()->categories() as $category)
{{ $category->name }}
@if($category->raw('image'))
{!! $category->display('image') !!}
@endif
@foreach ($category->products() as $product)
@include('fragments.establishment.product.line', [
'context' => $product
])
@endforeach