@extends('layouts.smartadmin.main') @section('title') @lang('Account') • @lang('API Tokens') @endsection @section('content')

@lang('Manage API Tokens')

{{ __('You may delete any of your existing tokens if they are no longer needed.') }}

@foreach ($user->tokens->sortBy('name') as $token) @endforeach
You have {{ $user->tokens->count() }} API tokens.
Name Last Used Action
{{ $token->name }} @if ($token->last_used_at) {{ __('Last used') }} {{ $token->last_used_at->diffForHumans() }} @else Never @endif
@endsection @push('scripts') @endpush