39 lines
1.2 KiB
PHP
39 lines
1.2 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="it">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Articoli Venduti</title>
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<h1>Tutti gli Ordini</h1>
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Num</th>
|
|
<th>Data Ora</th>
|
|
<th>Quantità</th>
|
|
<th>Titolo Articolo</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($ordini as $ordine)
|
|
<tr>
|
|
<td>{{ $ordine->progressivo }}</td>
|
|
<td>{{ \Carbon\Carbon::parse($ordine->DataOra)->format('d/m/Y H:i:s') }}</td>
|
|
<td>@if (isset($articolo->Qta)){{ $ordine->Qta }}@endif
|
|
</td>
|
|
<td>@if (isset($articolo->Titolo)){{ $ordine->Titolo }}@endif
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |