Move invoice blades around. Added invoices in credit view
Some checks failed
Create Docker Image / Build Docker Image (x86_64) (push) Failing after 28s
Create Docker Image / Final Docker Image Manifest (push) Has been skipped

This commit is contained in:
2024-07-06 19:28:14 +10:00
parent f458bb19c5
commit 844d509834
10 changed files with 93 additions and 22 deletions

View File

@@ -0,0 +1,58 @@
<div class="card card-dark">
<div class="card-header">
<h4 class="card-title">Accounts</h4>
</div>
<div class="card-body">
@if ($x=$user->accounts_all->count())
<table class="table table-striped table-hover" id="accounts">
<thead>
<tr>
<th>Profile</th>
<th>Name</th>
<th class="text-right">Services</th>
</tr>
</thead>
<tbody>
@foreach ($user->accounts_all 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>
<tfoot>
<tr>
<th>Count {{ $x }}</th>
<th colspan="2">&nbsp;</th>
</tr>
</tfoot>
</table>
@else
<p>No Accounts Active</p>
@endif
</div>
</div>
@section('page-styles')
@css(datatables,bootstrap4)
@append
@section('page-scripts')
@js(datatables,bootstrap4)
<script type="text/javascript">
$(document).ready(function() {
$('#accounts').DataTable({
language: {
emptyTable: "No Active Clients"
},
order: [1,'asc'],
pageLength: 10
});
});
</script>
@append