@php // PIZZAS triés par NB VENDUES $stats_pizzas = $stats['recap']['pizzas']; $stats_pizzas = collect($stats_pizzas)->sortByDesc('vendues'); $slice = 10; $stats_pizzas_bests = $stats_pizzas->take($slice); $stats_pizzas_suite = $stats_pizzas->slice($slice); @endphp @section('page-script') @endsection
Les 10 Pizzas qui marchent le mieux
@foreach($stats_pizzas_bests as $key => $pizza)

@endforeach
@if(!$stats_pizzas_suite->isEmpty())

@endif
@foreach($stats_pizzas_suite as $key => $pizza)

@endforeach