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

59 lines
1.3 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">
@if ($user->accounts->count())
<table class="table table-striped table-hover" id="accounts">
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 class="text-right">Services</th>
2018-07-17 04:10:40 +00:00
</tr>
</thead>
<tbody>
@foreach ($user->accounts as $ao)
<tr>
<td><a href="{{ url('r/switch/start',$ao->user_id) }}"><i class="fas fa-external-link-alt"></i></a></td>
<td>{{ $ao->name }}</td>
<td class="text-right">{{ $ao->services->where('active',TRUE)->count() }} <small>/{{ $ao->services->count() }}</small></td>
</tr>
@endforeach
</tbody>
2021-06-29 06:36:34 +00:00
2018-07-17 04:10:40 +00:00
<tfoot>
<tr>
<th>Count {{ $user->accounts->count() }}</th>
<th colspan="2">&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')
@css(datatables,bootstrap4)
@js(datatables,bootstrap4)
2018-07-17 04:10:40 +00:00
<script type="text/javascript">
$(document).ready(function() {
$('#accounts').DataTable({
2018-07-17 04:10:40 +00:00
language: {
emptyTable: "No Active Clients"
},
order: [1,'asc'],
pageLength: 10
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