39 lines
1.2 KiB
PHP
39 lines
1.2 KiB
PHP
<div class="form-group mb-0">
|
|
<label for="checkout_id">Invoices Due</label>
|
|
@if(($x=$o->invoices()
|
|
->where('active',TRUE)
|
|
->orderBy('due_date')
|
|
->with(['items.taxes','paymentitems.payment','account'])
|
|
->get()
|
|
->filter(function($item) use ($pid) { return $item->due > 0 || $item->payments->search(function($item) use ($pid) { return $item->id == $pid; }) !== FALSE; }))->count())
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Date Issue</th>
|
|
<th>Date Due</th>
|
|
<th>Total</th>
|
|
<th>Due</th>
|
|
<th class="text-right">Apply</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
@foreach ($x as $io)
|
|
<tr>
|
|
<td><a href="{{ url('u/invoice',[$io->id]) }}">{{ $io->sid }}</a></td>
|
|
<td>{{ $io->invoice_date->format('Y-m-d') }}</td>
|
|
<td>{{ $io->due_date->format('Y-m-d') }}</td>
|
|
<td>{{ number_format($io->total,2) }}</td>
|
|
<td>{{ number_format($io->due,2) }}</td>
|
|
<td class="text-right">
|
|
<input type="text" class="text-right" name="invoices[{{ $io->id }}]" value="{{ ($x=$io->paymentitems->filter(function($item) use ($pid) { return $item->payment_id == $pid; })) ? $x->sum('alloc_amt') : 0}}">
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
@else
|
|
<p>No invoices due.</p>
|
|
@endif
|
|
</div> |