@extends('admin-panel.layout') @section('page-title', 'Applications') @section('page-content')

Active Applications

@if ( $applications['count'] == 0 )

No Applications

@else

{{ $applications['count'] }} Applications

@foreach ($applications['data'] as $i => $app) @endforeach
# Application Name Auth Key Created Date Time
{{ ($i+1) }} {{ $app['app_name'] }} {{ $app['app_auth_key'] }} {{ hfDateTimeFormat($app['app_auth_dt']) }} Revoke
@endif
@endsection