2020-02-06 09:31:43 +00:00
|
|
|
<table class="table">
|
|
|
|
<tr>
|
2020-02-13 11:18:20 +00:00
|
|
|
<th colspan="3">{{ $o->name }}</th><th class="text-right">${{ number_format(($x=$o->next_invoice_items(TRUE))->sum('total'),2) }}</th>
|
2020-02-06 09:31:43 +00:00
|
|
|
</tr>
|
2019-07-02 05:28:27 +00:00
|
|
|
|
2020-02-13 11:18:20 +00:00
|
|
|
@foreach ($x as $io)
|
2020-02-06 09:31:43 +00:00
|
|
|
<tr>
|
|
|
|
<td class="pt-0 pb-1"> </td>
|
|
|
|
<td class="pt-0 pb-1">{{ $io->item_type_name }}</td>
|
|
|
|
<td class="text-right pt-0 pb-1">${{ number_format($io->total,2) }}</td>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</table>
|