Files
apimacro/resources/views/export_articles_test.blade.php

25 lines
691 B
PHP
Raw Normal View History

2024-12-07 20:57:15 +01:00
@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>
2024-12-07 21:00:10 +01:00
@foreach($articoli as $articolo)
2024-12-07 20:57:15 +01:00
<tr>
<td>{{ $articolo->IdArticolo }}</td>
<td>{{ $articolo->Descrizione }}</td>
<td>{{ number_format($articolo->totaleVenduti, 0, ',', '.') }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@endsection