Files
apimacro/resources/views/export_articles_test.blade.php
paoloar77 79f2ff2e00 aa
2024-12-07 23:12:59 +01:00

39 lines
1.2 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">
<h1>Totale Vendite per Articolo</h1>
<table class="table table-striped">
<thead>
<tr>
<th>ID Articolo</th>
<th>Descrizione</th>
<th>ultimaDataOra</th>
<th>Totale Venduti</th>
</tr>
</thead>
<tbody>
@foreach($articoli as $articolo)
<tr>
<td>{{ $articolo->IdArticolo }}</td>
<td>{{ $articolo->Titolo }}</td>
<td>@if (isset($articolo->ultimaDataOra)){{ \Carbon\Carbon::parse($articolo->ultimaDataOra)->format('d/m/Y') }}@endif
</td>
<td>{{ number_format($articolo->totaleVenduti, 0, ',', '.') }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</body>
</html>