2020-07-21 06:39:23 +00:00
|
|
|
@if(($x=$o->get())->count())
|
|
|
|
<table class="table table-bordered w-100" id="{{ $widget_invoice_name ?? 'widget-invoice'}}">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2020-07-22 04:49:39 +00:00
|
|
|
<th class="text-right">Account</th>
|
2020-07-21 06:39:23 +00:00
|
|
|
<th class="text-right">#</th>
|
|
|
|
<th class="text-right">Issued</th>
|
|
|
|
<th class="text-right">Due</th>
|
|
|
|
<th class="text-right">Total</th>
|
|
|
|
<th class="text-right">Payments</th>
|
|
|
|
<th class="text-right">Outstanding</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
@foreach ($x as $oo)
|
|
|
|
<tr>
|
2020-07-22 04:49:39 +00:00
|
|
|
<td id="account">{{ $oo->account->name }}</td>
|
2020-07-21 06:39:23 +00:00
|
|
|
<td class="text-right"><a href="{{ url('u/invoice',$oo->id) }}">{{ $oo->id }}</a></td>
|
|
|
|
<td class="text-right">{{ $oo->date_orig->format('Y-m-d') }}</td>
|
|
|
|
<td class="text-right">{{ $oo->due_date->format('Y-m-d') }}</td>
|
|
|
|
<td class="text-right">${{ number_format($oo->invoice_total,2) }}</td>
|
|
|
|
<td class="text-right">${{ number_format($oo->payments,2) }}</td>
|
|
|
|
<td class="text-right">${{ number_format($oo->balance,2) }}</td>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
@section('page-scripts')
|
|
|
|
@css('//cdn.datatables.net/1.10.19/css/jquery.dataTables.min.css','jq-dt-css','jquery')
|
|
|
|
@js('//cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js','jq-dt-js','jquery')
|
|
|
|
@css('//cdn.datatables.net/responsive/2.2.1/css/responsive.dataTables.min.css','jq-dt-r-css','jq-dt-css')
|
|
|
|
@js('//cdn.datatables.net/responsive/2.2.1/js/dataTables.responsive.min.js','jq-dt-r-js','jq-dt-js')
|
|
|
|
@css('/plugin/dataTables/dataTables.bootstrap4.css','dt-bootstrap4-css','jq-dt-css')
|
|
|
|
@js('/plugin/dataTables/dataTables.bootstrap4.js','dt-bootstrap4-js','jq-dt-js')
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(document).ready(function() {
|
|
|
|
$('#{{ $widget_invoice_name ?? 'widget-invoice'}}').DataTable({
|
|
|
|
responsive: true,
|
2020-07-22 04:49:39 +00:00
|
|
|
order: [[0,'asc'],[3,'desc']],
|
|
|
|
rowGroup: {
|
|
|
|
dataSrc: 0,
|
|
|
|
},
|
|
|
|
columnDefs: [
|
|
|
|
{
|
|
|
|
targets: [0],
|
|
|
|
visible: false,
|
|
|
|
}
|
|
|
|
],
|
2020-07-21 06:39:23 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$('#{{ $widget_invoice_name ?? 'widget-invoice'}} tbody').on('click','tr', function () {
|
|
|
|
$(this).toggleClass('selected');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
@append
|
|
|
|
|
|
|
|
@else
|
|
|
|
No data to display
|
|
|
|
@endif
|