Files
apimacro/resources/views/export_articles_test.blade.php

46 lines
1.5 KiB
PHP
Raw Normal View History

2024-12-07 22:56:39 +01:00
<!DOCTYPE html>
<html lang="it">
2024-12-07 20:57:15 +01:00
2024-12-07 22:56:39 +01:00
<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">
2024-12-08 12:03:02 +01:00
<pre>{{ print_r($articoli, true) }}</pre>
2024-12-07 22:56:39 +01:00
<h1>Totale Vendite per Articolo</h1>
<table class="table table-striped">
<thead>
<tr>
<th>ID Articolo</th>
<th>Descrizione</th>
2024-12-07 23:12:59 +01:00
<th>ultimaDataOra</th>
2024-12-07 22:56:39 +01:00
<th>Totale Venduti</th>
</tr>
</thead>
<tbody>
@foreach($articoli as $articolo)
2024-12-08 12:04:54 +01:00
@if (isset($articolo))
<tr>
2024-12-08 12:05:24 +01:00
<td>@if (isset($articolo->IdArticolo))
{{ $articolo->IdArticolo }}
@endif
</td>
2024-12-08 12:04:54 +01:00
<td>{{ $articolo->Titolo }}</td>
<td>@if (isset($articolo->ultimaDataOra)){{ \Carbon\Carbon::parse($articolo->ultimaDataOra)->format('d/m/Y') }}@endif
</td>
2024-12-07 23:12:59 +01:00
2024-12-08 12:04:54 +01:00
<td>{{ number_format($articolo->totaleVenduti, 0, ',', '.') }}</td>
</tr>
@endif
2024-12-07 22:56:39 +01:00
@endforeach
</tbody>
</table>
</div>
</body>
</html>