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

30 lines
617 B
PHP

<style>
<?php include public_path('css/invoice.css') ?>
</style>
<table class="invoice">
<thead>
<tr>
<th colspan="7">
</th>
</tr>
<tr class="ProductHeadRow" >
<td >Cikkszám</td>
<td>Termék</td>
<td>Db/gyűjtő</td>
<td>Kisz.</td>
<td>Rend. menny.</td>
<td>Nettó egységár</td>
<td>Nettó összesen</td>
</tr>
</thead>
<tbody>
<tr style=" text-align: right;">
<td colspan="7">Végösszeg: {{str_replace(",00", "", number_format($sumPrice,2,',',' '))}} Ft.</td>
</tr>
</tbody>
</table>