@if ( $clients['count'] == 0 )
You do not have any clients
@else
| Client Name |
Status |
Secret |
|
@foreach ($clients['data'] as $client)
| {{ $client['client_name'] }} |
{{ $client['client_hash'] }} |
@if ( $client['is_active'] )
Active
@else
In-Active
@endif
|
Users
{{-- Devices --}}
{{-- Locations --}}
|
@endforeach
@endif