This commit is contained in:
edmondlang
2023-11-26 22:01:36 +08:00
2 changed files with 5 additions and 1 deletions
@@ -48,6 +48,7 @@
$packages = $billable_packing_list->packages;
$totalCBM = 0;
$totalQty = 0;
$order_reference = $invoice_transaction->owner->owner ? $invoice_transaction->owner->owner->reference : null;
@endphp
@foreach ($packages as $key => $package)
@php
@@ -59,7 +60,8 @@
@endphp
<tr>
<td width="5%" class="center top">{{ $key + 1 }}</td>
<td class="description">{!! $package->description !!}</td>
<!-- <td class="description">{!! $package->description !!}</td> -->
<td class="description">{{ $order_reference }}</td>
<td width="15%" class="center top" style="text-align: center">
{!! $measurement !!}
</td>
@@ -129,6 +129,8 @@ $grandSubTotal = 0;
@foreach ($invoice_transactions as $transaction)
<pagebreak />
@include('pages.pdfs.shipping_invoice_inner', ['invoice_transaction' => $transaction])
<pagebreak />
@include('pages.pdfs.packing_list_measurement', ['invoice_transaction' => $transaction])
@endforeach