osb/resources/views/theme/backend/adminlte/r/account/widgets/list.blade.php

61 lines
1.4 KiB
PHP
Raw Normal View History

2021-06-30 23:21:18 +00:00
<div class="card card-dark">
2019-06-02 05:35:48 +00:00
<div class="card-header">
<h4 class="card-title">Accounts</h4>
2018-07-17 04:10:40 +00:00
</div>
2019-06-02 05:35:48 +00:00
<div class="card-body">
2018-07-17 04:10:40 +00:00
@if ($user->all_accounts()->count())
2019-06-02 05:35:48 +00:00
<table class="table table-striped table-hover" id="accounts" style="width: 100%;">
2018-07-17 04:10:40 +00:00
<thead>
<tr>
2018-08-08 23:33:51 +00:00
<th>Profile</th>
2018-07-17 04:10:40 +00:00
<th>Name</th>
<th>Active</th>
2018-08-08 23:33:51 +00:00
<th>Services</th>
2018-07-17 04:10:40 +00:00
</tr>
</thead>
2021-06-29 06:36:34 +00:00
2018-07-17 04:10:40 +00:00
<tfoot>
<tr>
<th>Count {{ $user->all_accounts()->count() }}</th>
2018-08-08 23:33:51 +00:00
<th colspan="3">&nbsp;</th>
2018-07-17 04:10:40 +00:00
</tr>
</tfoot>
</table>
2021-06-29 06:36:34 +00:00
2018-07-17 04:10:40 +00:00
@else
2018-08-08 23:33:51 +00:00
<p>No Accounts Active</p>
2018-07-17 04:10:40 +00:00
@endif
</div>
</div>
@section('page-scripts')
2021-07-02 00:55:01 +00:00
@css('//cdn.datatables.net/1.10.25/css/dataTables.bootstrap4.min.css','jq-dt-css')
@js('//cdn.datatables.net/1.10.25/js/jquery.dataTables.min.js','jq-dt-js')
@js('//cdn.datatables.net/1.10.25/js/dataTables.bootstrap4.min.js','jq-dt-bs5-js','jq-dt-js')
2018-07-17 04:10:40 +00:00
<script type="text/javascript">
$(document).ready(function() {
2018-08-08 23:33:51 +00:00
$('#accounts').DataTable( {
2018-07-17 04:10:40 +00:00
ajax: {
url: "/api/r/accounts"
},
columns: [
2018-08-08 23:33:51 +00:00
{ data: "switch_url" },
{ data: "name" },
2018-08-08 23:33:51 +00:00
{ data: "active_display" },
{ data: "services_count_html" }
2018-07-17 04:10:40 +00:00
],
language: {
emptyTable: "No Active Clients"
},
2018-08-08 23:33:51 +00:00
order: [1, 'asc'],
pageLength: 25
2018-07-17 04:10:40 +00:00
});
2018-08-08 23:33:51 +00:00
$('#accounts tbody').on('click','tr', function () {
2018-07-17 04:10:40 +00:00
$(this).toggleClass('selected');
});
});
</script>
@append