megacommit

This commit is contained in:
Didier Slof 2023-02-02 08:17:38 +01:00
parent 2451ab45cb
commit 34ed81516b
Signed by: didier
GPG key ID: 01E71F18AA4398E5
51 changed files with 1200 additions and 251 deletions

View file

@ -0,0 +1,22 @@
<div>
<table>
<thead>
<tr>
<th>Order ID</th>
<th>Order Date</th>
<th>Order Status</th>
<th>Order Total</th>
</tr>
</thead>
<tbody>
@foreach ($orders as $order)
<tr>
<td><a href="/order/{{ $order->order_id }}">{{ $order->order_id }}</a></td>
<td>{{ $order->order_date }}</td>
<td>{{ $order->order_status }}</td>
<td>{{ $order->order_total }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>