Files
apimacro/resources/views/export_articles_test.blade.php
paoloar77 ecb7be99f2 aa
2024-12-08 12:05:24 +01:00

46 lines
1.5 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">
<pre>{{ print_r($articoli, true) }}</pre>
<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)
@if (isset($articolo))
<tr>
<td>@if (isset($articolo->IdArticolo))
{{ $articolo->IdArticolo }}
@endif
</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>
@endif
@endforeach
</tbody>
</table>
</div>
</body>
</html>