2018-08-20 12:15:28 +00:00
|
|
|
<div class="box box-notice">
|
2018-07-16 05:06:43 +00:00
|
|
|
<div class="box-header">
|
|
|
|
<h3 class="box-title">Payment History</h3>
|
|
|
|
<div class="box-tools pull-right">
|
|
|
|
<button type="button" class="btn btn-box-tool" data-widget="collapse" data-toggle="tooltip" title="Collapse">
|
|
|
|
<i class="fa fa-minus"></i></button>
|
|
|
|
<button type="button" class="btn btn-box-tool" data-widget="remove" data-toggle="tooltip" title="Remove">
|
|
|
|
<i class="fa fa-times"></i></button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-05-20 12:53:14 +00:00
|
|
|
|
2018-07-16 05:06:43 +00:00
|
|
|
<div class="box-body">
|
|
|
|
@if ($user->payment_history->count())
|
|
|
|
<table class="table table-bordered table-striped table-hover" id="payments" style="width: 100%;">
|
2018-06-19 12:31:49 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2018-07-16 05:06:43 +00:00
|
|
|
<th>ID</th>
|
2018-06-19 12:31:49 +00:00
|
|
|
<th>Date</th>
|
|
|
|
<th>Amount</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
2018-07-16 05:06:43 +00:00
|
|
|
</table>
|
|
|
|
@else
|
|
|
|
<p>No payments recorded</p>
|
|
|
|
@endif
|
|
|
|
</div>
|
2018-06-19 12:31:49 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
@section('page-scripts')
|
2018-07-16 05:06:43 +00:00
|
|
|
@css('https://cdn.datatables.net/responsive/2.2.1/css/responsive.dataTables.min.css')
|
|
|
|
@css('https://cdn.datatables.net/rowgroup/1.0.2/css/rowGroup.dataTables.min.css')
|
|
|
|
@js('https://cdn.datatables.net/responsive/2.2.1/js/dataTables.responsive.min.js')
|
|
|
|
@js('https://cdn.datatables.net/rowgroup/1.0.2/js/dataTables.rowGroup.min.js')
|
2018-06-19 12:31:49 +00:00
|
|
|
|
2018-07-16 05:06:43 +00:00
|
|
|
<style>
|
|
|
|
table.dataTable {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
table.dataTable td {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(document).ready(function() {
|
|
|
|
$('#payments').DataTable( {
|
|
|
|
responsive: true,
|
|
|
|
ajax: {
|
|
|
|
url: "/api/u/payments"
|
|
|
|
},
|
|
|
|
columns: [
|
|
|
|
{ data: "payment_id_url" },
|
|
|
|
{ data: "date_paid" },
|
|
|
|
{ data: "total" },
|
|
|
|
],
|
|
|
|
language: {
|
|
|
|
emptyTable: "No Payments On File"
|
|
|
|
},
|
|
|
|
order: [0, 'desc']
|
|
|
|
});
|
2018-06-19 12:31:49 +00:00
|
|
|
|
2018-07-16 05:06:43 +00:00
|
|
|
$('#payments tbody').on('click','tr', function () {
|
|
|
|
$(this).toggleClass('selected');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
2018-08-11 05:09:41 +00:00
|
|
|
@append
|