50 lines
1.9 KiB
PHP
50 lines
1.9 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Articoli Venduti</title>
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
|
|
</head>
|
|
<body>
|
|
<div class="container mt-4">
|
|
<h1 class="mb-4">Articoli Venduti</h1>
|
|
<table class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>Id Articolo</th>
|
|
<th>Titolo</th>
|
|
<th>Data Ultimo Ordine</th>
|
|
<th>Totale Venduto</th>
|
|
<th>Ultimo Mese</th>
|
|
<th>Ultimi 6 Mesi</th>
|
|
<th>Ultimo Anno</th>
|
|
<th>Ultimi 2 Anni</th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@if ($articoliVenduti->isEmpty())
|
|
<tr>
|
|
<td colspan="6" class="text-center">Nessun articolo trovato.</td>
|
|
</tr>
|
|
@else
|
|
@foreach ($articoliVenduti as $articolo)
|
|
<tr>
|
|
<td>{{ $articolo->idArticolo }}</td>
|
|
<td>{{ $articolo->Titolo }}</td>
|
|
<td>{{ \Carbon\Carbon::parse($articolo->ultimoOrdine)->format('d/m/Y') }}</td>
|
|
<td>{{ $articolo->totaleVenduto }}</td>
|
|
<td>{{ $articolo->totaleVendutoUltimoMese }}</td>
|
|
<td>{{ $articolo->totaleVendutoUltimi6Mesi }}</td>
|
|
<td>{{ $articolo->totaleVendutoUltimoAnno }}</td>
|
|
<td>{{ $articolo->totaleVendutoUltimi2Anni }}</td>
|
|
</tr>
|
|
@endforeach
|
|
@endif
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</body>
|
|
</html>
|