d2d.emegrendeles.hu/resources/views/hooreycaIdNotifier.blade.php
E98Developer 68b7c35bef git init
2026-02-28 06:53:05 +01:00

30 lines
600 B
PHP

<html>
<style>
table{
border-spacing: 0;
}
td,th{
border-style:solid; border-width:1px; border-color:#6c7b88;
border-spacing: 0;
padding: 5px;
}
</style>
<body>
<p>Lekérderzés időpontja: {{$fromTime}}</p>
<table >
<tr>
<th>Profitcenter</th>
<th>Termék</th>
<th>Beszállító</th>
</tr>
@foreach($items as $item)
<tr>
<td>{{$item['profit_center_name']}}</td>
<td>{{$item['name']}}</td>
<td>{{$item['supplier_name']}}</td>
</tr>
@endforeach
</table>
</body>
</html>