This commit is contained in:
paoloar77
2024-11-27 15:13:17 +01:00
parent 73de034024
commit 1dc4f2e7ba

View File

@@ -15,9 +15,17 @@
<th>Id Articolo</th> <th>Id Articolo</th>
<th>Titolo</th> <th>Titolo</th>
<th>Totale Venduto</th> <th>Totale Venduto</th>
<th>Ultimo Mese</th>
<th>Ultimi 6 Mesi</th>
<th>Ultimo Anno</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@if ($articoliVenduti->isEmpty())
<tr>
<td colspan="6" class="text-center">Nessun articolo trovato.</td>
</tr>
@else
@foreach ($articoliVenduti as $articolo) @foreach ($articoliVenduti as $articolo)
<tr> <tr>
<td>{{ $articolo->idArticolo }}</td> <td>{{ $articolo->idArticolo }}</td>
@@ -28,6 +36,7 @@
<td>{{ $articolo->totaleVendutoUltimoAnno }}</td> <td>{{ $articolo->totaleVendutoUltimoAnno }}</td>
</tr> </tr>
@endforeach @endforeach
@endif
</tbody> </tbody>
</table> </table>
</div> </div>