@extends('Layouts/simplified') @section('content')

@foreach ($products as $name => $category)

{{ $name }}

@foreach ($category as $product)
{{ $product->name }}
@if ($product->price) {{ $currency->symbol}}{{ $product->price }} @endif
@endforeach @endforeach @if (!$products)

No products for this event

@endif

Start over


@endsection