@extends('admin.layouts.app') @section('title', __('admin.api_credentials.title')) @section('content')
{{ session('new_secret') }}
{{ __('admin.api_credentials.description') }}
| {{ __('common.table.description') }} | {{ __('admin.api_credentials.identifier') }} | {{ __('admin.api_credentials.admin') }} | {{ __('common.table.created') }} | {{ __('common.table.status') }} | {{ __('common.table.actions') }} |
|---|---|---|---|---|---|
| {{ $cred->description ?: __('admin.api_credentials.no_description') }} | {{ $cred->identifier }} |
{{ $cred->admin->full_name ?? 'N/A' }} | {{ $cred->created_at?->format('d M Y H:i') ?? '-' }} | {{ $cred->active ? __('common.status.active') : __('common.status.disabled') }} |
/api/v1/{action} {{ __('admin.api_credentials.api_usage_params') }}
@if(Route::has('admin.api-docs'))
{{ __('admin.api_credentials.view_docs') }}
@endif