Files
opensem/resources/views/Shop/Admin/PriceGenerics/partials/table-prices.blade.php
Ludovic CANDELLIER 083d358fbd Mise à jour
2021-03-21 23:26:53 +01:00

24 lines
486 B
PHP

<table class="table table-bordered table-hover table-striped w-100 mb-0 dataTable">
<thead>
<th>
{{ $generic['category']['name'] ?? null }}
</th>
@foreach ($generic['prices'] as $price)
<th>
{{ $price['quantity'] ?? null }} {{ $price['unity_id'] ?? null }}
</th>
@endforeach
</thead>
<tr>
<td>
{{ $generic['name'] ?? null }}
</td>
@foreach ($generic['prices'] as $price)
<td>
{{ $price['price_taxed'] ?? null }}
</td>
@endforeach
</tr>
</table>