@extends('admin.layouts.app')
@section('content')
| Mois | Commandes | CA |
|---|---|---|
| {{ $data['name'] }} | {{ $data['orders'] }} | {{ number_format($data['revenue'], 2, ',', ' ') }} € |
| Total | {{ $totalOrders }} | {{ number_format($totalRevenue, 2, ',', ' ') }} € |
| Produit | Qté | CA |
|---|---|---|
| {{ \Illuminate\Support\Str::limit($item->product_name, 40) }} | {{ $item->total_qty }} | {{ number_format($item->total_revenue, 2, ',', ' ') }} € |
| Aucune vente pour cette annee. | ||
| Statut | Commandes | CA |
|---|---|---|
| {{ $statusBreakdown[$key]->count }} | {{ number_format($statusBreakdown[$key]->revenue, 2, ',', ' ') }} € |