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

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

View File

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