<div class="box box-success small">
	<div class="box-header">
		<h3 class="box-title">Accounts</h3>
		<div class="box-tools pull-right">
			<button type="button" class="btn btn-box-tool" data-widget="collapse" data-toggle="tooltip" title="Collapse">
				<i class="fa fa-minus"></i></button>
			<button type="button" class="btn btn-box-tool" data-widget="remove" data-toggle="tooltip" title="Remove">
				<i class="fa fa-times"></i></button>
		</div>
	</div>

	<div class="box-body">
		@if ($user->all_accounts()->count())
			<table class="table table-bordered table-striped table-hover" id="accounts" style="width: 100%;">
				<thead>
				<tr>
					<th>Profile</th>
					<th>Name</th>
					<th>Active</th>
					<th>Services</th>
				</tr>
				</thead>
				<tfoot>
				<tr>
					<th>Count {{ $user->all_accounts()->count() }}</th>
					<th colspan="3">&nbsp;</th>
				</tr>
				</tfoot>
			</table>
		@else
			<p>No Accounts Active</p>
		@endif
	</div>
</div>

@section('page-scripts')
	@css('https://cdn.datatables.net/responsive/2.2.1/css/responsive.dataTables.min.css')
	@css('https://cdn.datatables.net/rowgroup/1.0.2/css/rowGroup.dataTables.min.css')
	@js('https://cdn.datatables.net/responsive/2.2.1/js/dataTables.responsive.min.js')
	@js('https://cdn.datatables.net/rowgroup/1.0.2/js/dataTables.rowGroup.min.js')

	<style>
		table.dataTable td {
			outline: none;
		}
	</style>
	<script type="text/javascript">
		$(document).ready(function() {
			$('#accounts').DataTable( {
				responsive: true,
				ajax: {
					url: "/api/r/accounts"
				},
				columns: [
					{ data: "switch_url" },
					{ data: "company" },
					{ data: "active_display" },
					{ data: "services_count_html" }
				],
				language: {
					emptyTable: "No Active Clients"
				},
				order: [1, 'asc'],
				pageLength: 25
			});

			$('#accounts tbody').on('click','tr', function () {
				$(this).toggleClass('selected');
			});
		});
	</script>
@append