@php /** * @name Pagina lista ordini\Ordine * @version 1.0.0 */ @endphp @php $products = $order->get_products(); @endphp @if (!empty($products))
@get_template_part('page.orders.parts.header-info', null, ['order' => $order])
@foreach ($products as $product)
@get_template_part('page.orders.parts.product', null, ['product' => $product])
@endforeach
@endif