2019-06-02 05:35:48 +00:00
|
|
|
<div class="card card-info card-outline">
|
|
|
|
<div class="card-header">
|
|
|
|
<h4 class="card-title">Services</h4>
|
2018-07-16 05:06:43 +00:00
|
|
|
</div>
|
2018-05-20 12:53:14 +00:00
|
|
|
|
2019-06-02 05:35:48 +00:00
|
|
|
<div class="card-body">
|
2020-02-06 22:11:02 +00:00
|
|
|
@if ($o->services_active->count())
|
2019-06-02 05:35:48 +00:00
|
|
|
<table class="table table-striped table-hover" id="services" style="width: 100%;">
|
2018-07-16 05:06:43 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2018-06-19 12:31:49 +00:00
|
|
|
<th>ID</th>
|
2018-07-16 05:06:43 +00:00
|
|
|
<th>Category</th>
|
|
|
|
<th>Service</th>
|
|
|
|
<th>Product</th>
|
|
|
|
<th>Status</th>
|
|
|
|
<th>Next Invoice</th>
|
2019-07-04 04:55:05 +00:00
|
|
|
{{-- <th>Amount</th> --}}
|
2018-07-16 05:06:43 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
2019-06-02 05:35:48 +00:00
|
|
|
|
2018-07-16 05:06:43 +00:00
|
|
|
<tfoot>
|
|
|
|
<tr>
|
2020-02-06 22:11:02 +00:00
|
|
|
<th>Count {{ $o->services_active->count() }}</th>
|
2018-07-16 05:06:43 +00:00
|
|
|
<th colspan="5"> </th>
|
|
|
|
</tr>
|
|
|
|
</tfoot>
|
|
|
|
</table>
|
2019-06-02 05:35:48 +00:00
|
|
|
|
2018-07-16 05:06:43 +00:00
|
|
|
@else
|
|
|
|
<p>No services active</p>
|
|
|
|
@endif
|
|
|
|
</div>
|
2018-06-05 11:13:57 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
@section('page-scripts')
|
2020-02-06 22:11:02 +00:00
|
|
|
@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')
|
2019-07-04 04:55:05 +00:00
|
|
|
@css('//cdn.datatables.net/responsive/2.2.1/css/responsive.dataTables.min.css','dt-responsive-css','jq-dt-css')
|
|
|
|
@js('//cdn.datatables.net/responsive/2.2.1/js/dataTables.responsive.min.js','dt-responsive-js','jq-dt-js')
|
|
|
|
@css('//cdn.datatables.net/rowgroup/1.0.2/css/rowGroup.dataTables.min.css','dt-rowgroup-css','jq-dt-css')
|
|
|
|
@js('//cdn.datatables.net/rowgroup/1.0.2/js/dataTables.rowGroup.min.js','dt-rowgroup-js','jq-dt-js')
|
2019-06-02 05:35:48 +00:00
|
|
|
@css('/plugin/dataTables/dataTables.bootstrap4.css','dt-bootstrap4-css','jq-dt-css')
|
|
|
|
@js('/plugin/dataTables/dataTables.bootstrap4.js','dt-bootstrap4-js','jq-dt-js')
|
2018-06-05 11:13:57 +00:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
2018-07-16 05:06:43 +00:00
|
|
|
$(document).ready(function() {
|
|
|
|
$('#services').DataTable( {
|
|
|
|
responsive: true,
|
|
|
|
ajax: {
|
2020-02-06 22:11:02 +00:00
|
|
|
url: "/api/u/services/{{ $o->id }}"
|
2018-07-16 05:06:43 +00:00
|
|
|
},
|
|
|
|
columns: [
|
|
|
|
{ data: "service_id_url" },
|
2019-06-07 06:54:27 +00:00
|
|
|
{ data: "product_category" },
|
|
|
|
{ data: "name_short" },
|
2018-07-16 05:06:43 +00:00
|
|
|
{ data: "product_name" },
|
|
|
|
{ data: "status" },
|
2019-07-04 04:55:05 +00:00
|
|
|
{ data: "next_invoice" },
|
|
|
|
{{-- { data: "billing_price", render: $.fn.dataTable.render.number(',','.',2,'$') } --}}
|
2018-07-16 05:06:43 +00:00
|
|
|
],
|
|
|
|
language: {
|
|
|
|
emptyTable: "No Active Services"
|
|
|
|
},
|
2018-08-11 05:09:41 +00:00
|
|
|
order: [5, 'asc'],
|
|
|
|
rowGroup: {
|
|
|
|
dataSrc: 'product_name',
|
|
|
|
startRender: null,
|
|
|
|
endRender: function ( rows, group ) {
|
|
|
|
return rows.count()+' x ' + group;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
orderFixed: [3, 'asc']
|
2018-07-16 05:06:43 +00:00
|
|
|
});
|
2018-06-19 12:31:49 +00:00
|
|
|
|
2018-07-16 05:06:43 +00:00
|
|
|
$('#services tbody').on('click','tr', function () {
|
|
|
|
$(this).toggleClass('selected');
|
|
|
|
});
|
|
|
|
});
|
2019-06-02 05:35:48 +00:00
|
|
|
</script>
|
2018-06-05 11:13:57 +00:00
|
|
|
@append
|