25 lines
691 B
PHP
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 |