30 lines
1.0 KiB
PHP
30 lines
1.0 KiB
PHP
|
<table class="table table-bordered">
|
||
|
<!-- 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 colspan="4">TOTAL</th>
|
||
|
<th class="text-right">${{ number_format($x->sum('total'),2) }}</th>
|
||
|
</tr>
|
||
|
</table>
|