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

70 lines
2.2 KiB
PHP
Raw Normal View History

2019-06-02 05:35:48 +00:00
<div class="card card-success card-outline">
<div class="card-header">
<h4 class="card-title">Accounts</h4>
<div class="card-tools">
<button type="button" class="btn btn-tool" data-widget="collapse"><i class="fa fa-minus"></i></button>
<button type="button" class="btn btn-tool" data-widget="remove"><i class="fa fa-remove"></i></button>
2018-07-17 04:10:40 +00:00
</div>
</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>
<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>
@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')
2019-06-02 05:35:48 +00:00
@css('https://cdn.datatables.net/1.10.19/css/jquery.dataTables.min.css','jq-dt-css','jquery');
@js('https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js','jq-dt-js','jquery');
@css('https://cdn.datatables.net/responsive/2.2.1/css/responsive.dataTables.min.css','dt-responsive-css','jq-dt-css')
@js('https://cdn.datatables.net/responsive/2.2.1/js/dataTables.responsive.min.js','dt-responsive-js','jq-dt-js')
@css('https://cdn.datatables.net/rowgroup/1.0.2/css/rowGroup.dataTables.min.css','dt-rowgroup-css','jq-dt-css')
@js('https://cdn.datatables.net/rowgroup/1.0.2/js/dataTables.rowGroup.min.js','dt-rowgroup-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')
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
responsive: true,
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