@php
$boxes = [
['bg-info', 'total ', number_format($total_vente, 2) . ' DH', 'ion-bag'],
['bg-success', 'avances', number_format($total_avance, 2) . ' DH', 'ion-stats-bars'],
['bg-danger', 'credit', number_format($total_rest, 2) . ' DH', 'ion-pie-graph'],
['bg-warning', 'Factures à crédit', $ventes1->count(), 'ion-person-add'],
];
@endphp
@foreach ($boxes as [$color, $title, $value, $icon])
@endforeach