@push('title') Apikey Module @endpush @can('create_apikey_management')
@endcan @if(auth()->user()->isKeyLimitExceeded())
You have reached the maximum limit of API keys.
@endif

API Keys

@foreach ($apikeys as $apikey) @endforeach
Name Key Current Usage Status Action
{{ $apikey->name }} {{ substr($apikey->apikey, 0, 7) . '**************' . substr($apikey->apikey, -4) }} {{ $apikey->usage_curent_month }} @if ($apikey->status == \App\Models\Apikey::ACTIVE) Active @elseif($apikey->status == \App\Models\Apikey::INACTIVE) Inactive @elseif($apikey->status == \App\Models\Apikey::SUSPENED) Suspended @endif @can('update_apikey_management') @endcan @can('delete_apikey_management') @endcan