aa
This commit is contained in:
@@ -15,9 +15,17 @@
|
||||
<th>Id Articolo</th>
|
||||
<th>Titolo</th>
|
||||
<th>Totale Venduto</th>
|
||||
<th>Ultimo Mese</th>
|
||||
<th>Ultimi 6 Mesi</th>
|
||||
<th>Ultimo Anno</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>
|
||||
@@ -28,6 +36,7 @@
|
||||
<td>{{ $articolo->totaleVendutoUltimoAnno }}</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
@endif
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user