40 lines
1.3 KiB
PHP
40 lines
1.3 KiB
PHP
|
<!-- Show next items for an invoice -->
|
||
|
@if ($o->next_invoice_items($future)->count())
|
||
|
<div class="card">
|
||
|
<div class="card-body">
|
||
|
<table class="table">
|
||
|
<!-- Group by Account -->
|
||
|
@foreach (($x=$o->next_invoice_items($future))->groupBy('product_id') as $id => $oo)
|
||
|
<tr>
|
||
|
<th colspan="4">{{ $oo->first()->product->name }}</th>
|
||
|
<th class="text-right">${{ number_format($oo->sum('total'),2) }}</th>
|
||
|
</tr>
|
||
|
|
||
|
@foreach ($oo->groupBy('service_id') as $ooo)
|
||
|
<tr>
|
||
|
<td class="pt-0 pb-1" style="width: 8em;"><a href="{{ url('u/service',$ooo->first()->service_id) }}">{{ $ooo->first()->service->sid }}</a></td>
|
||
|
<td class="pt-0 pb-1" colspan="3">{{ $ooo->first()->service->sname }}: {{ $ooo->first()->service->sdesc }}</td>
|
||
|
</tr>
|
||
|
|
||
|
@foreach ($ooo as $io)
|
||
|
<tr>
|
||
|
<td class="pt-0 pb-1"> </td>
|
||
|
<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
|
||
|
@endforeach
|
||
|
@endforeach
|
||
|
|
||
|
<tr>
|
||
|
<th class="text-right" colspan="4">TOTAL</th>
|
||
|
<th class="text-right">${{ number_format($x->sum('total'),2) }}</th>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
@else
|
||
|
<p>No items currently due to invoice.</p>
|
||
|
@endif
|