Files
apimacro/resources/views/export_articles_test.blade.php
paoloar77 0dc1d1f50c aa
2024-12-07 21:00:10 +01:00

25 lines
691 B
PHP

@extends('layouts.app')
@section('content')
<div class="container">
<h1>Totale Vendite per Articolo</h1>
<table class="table table-striped">
<thead>
<tr>
<th>ID Articolo</th>
<th>Descrizione</th>
<th>Totale Venduti</th>
</tr>
</thead>
<tbody>
@foreach($articoli as $articolo)
<tr>
<td>{{ $articolo->IdArticolo }}</td>
<td>{{ $articolo->Descrizione }}</td>
<td>{{ number_format($articolo->totaleVenduti, 0, ',', '.') }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@endsection