{{ __('API Tokens') }}

Gestione API Tokens

Crea e gestisci i token di accesso per le API

Crea Nuovo Token

@csrf

Tieni premuto Ctrl/Cmd per selezionare più opzioni

{{ __('Crea Token') }}

Token Esistenti

@if(isset($tokens) && $tokens->count() > 0)
@foreach($tokens as $token) @endforeach
Nome Abilità Ultimo Utilizzo Creato il Azioni
{{ $token->name }} @if($token->abilities) @foreach(json_decode($token->abilities, true) as $ability) {{ ucfirst($ability) }} @endforeach @else Tutte @endif {{ $token->last_used_at ? $token->last_used_at->format('d/m/Y H:i') : 'Mai utilizzato' }} {{ $token->created_at->format('d/m/Y H:i') }}
@csrf @method('DELETE')
@else

Nessun token API creato

Crea il tuo primo token utilizzando il form sopra

@endif
⚠️ Informazioni di Sicurezza
  • • I token API forniscono accesso completo al tuo account
  • • Non condividere mai i tuoi token con terze parti non autorizzate
  • • Elimina immediatamente i token che non utilizzi più
  • • Monitora regolarmente l'utilizzo dei tuoi token
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif