27 lines
837 B
PHP
27 lines
837 B
PHP
@foreach($items as $key=>$item)
|
|
|
|
<tr>
|
|
<td>{{$item['supplierProductNumber']}}</td>
|
|
<td>{{$item['name']}}</td>
|
|
<td>{{$item['quantity']}}</td>
|
|
<td>{{$item['sellerUnit']}}</td>
|
|
<td>{{$item['unitMultiplier']}}</td>
|
|
<td>{{$item['price']}}</td>
|
|
<td>{{$item['amountUnit']}}</td>
|
|
<td>{{$item['amount']}}</td>
|
|
</tr>
|
|
@isset($item['comment'])
|
|
@if(!empty($item['comment']))
|
|
<tr>
|
|
<td colspan="7" style="padding-left: 1em;"> {{$item['supplierProductNumber']}} megjegyzés: {{$item['comment']}}</td>
|
|
</tr>
|
|
@endif
|
|
@endisset
|
|
|
|
@endforeach
|
|
|
|
<tr class="invoiceSumRow" >
|
|
<td >Végösszeg:</td>
|
|
<td colspan="6" style="text-align: right;"> {{str_replace(",00", "", number_format($sumPrice,2,',',' '))}} Ft</td>
|
|
</tr>
|