This commit is contained in:
paoloar77
2024-12-08 12:04:54 +01:00
parent 5abc4f6b85
commit 565487bfe4

View File

@@ -24,6 +24,7 @@
</thead>
<tbody>
@foreach($articoli as $articolo)
@if (isset($articolo))
<tr>
<td>{{ $articolo->IdArticolo }}</td>
<td>{{ $articolo->Titolo }}</td>
@@ -32,6 +33,7 @@
<td>{{ number_format($articolo->totaleVenduti, 0, ',', '.') }}</td>
</tr>
@endif
@endforeach
</tbody>
</table>