minor change in items of invoices and bills moved to partials path

This commit is contained in:
Sevan Nerse
2020-05-10 08:49:36 +03:00
parent a8fe772581
commit f916d6a200
8 changed files with 10 additions and 10 deletions

View File

@ -146,7 +146,7 @@
</thead>
<tbody>
@foreach($invoice->items as $item)
@include('partials.documents.item.print')
@include('partials.documents.item.print', ['document' => $invoice])
@endforeach
</tbody>
</table>

View File

@ -133,7 +133,7 @@
</thead>
<tbody>
@foreach($invoice->items as $item)
@include('partials.documents.item.print')
@include('partials.documents.item.print', ['document' => $invoice])
@endforeach
</tbody>
</table>

View File

@ -115,7 +115,7 @@
</thead>
<tbody>
@foreach($invoice->items as $item)
@include('partials.documents.item.print')
@include('partials.documents.item.print', ['document' => $invoice])
@endforeach
</tbody>
</table>

View File

@ -367,7 +367,7 @@
@stack('total_th_end')
</tr>
@foreach($invoice->items as $item)
@include('partials.documents.item.show')
@include('partials.documents.item.show', ['document' => $invoice])
@endforeach
</tbody>
</table>