aa
This commit is contained in:
25
resources/views/export_articles_test.blade.php
Normal file
25
resources/views/export_articles_test.blade.php
Normal file
@@ -0,0 +1,25 @@
|
||||
@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($articoliVenduti as $articolo)
|
||||
<tr>
|
||||
<td>{{ $articolo->IdArticolo }}</td>
|
||||
<td>{{ $articolo->Descrizione }}</td>
|
||||
<td>{{ number_format($articolo->totaleVenduti, 0, ',', '.') }}</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
@endsection
|
||||
Reference in New Issue
Block a user