@extends('user.profile.index') @section('profile-content')
| {{ __('SR No') }} | {{ __('Name') }} | {{ __('API Token') }} | {{ __('Created') }} | {{ __('Last Accessed') }} | {{ __('Delete') }} |
|---|---|---|---|---|---|
| {{ $apiTokens->firstItem() + $loop->index }} | {{ $apiToken->name }} | {{ str_repeat('*', 10) }}{{ substr($apiToken->token, -4) }} | {{ $apiToken->created_at->diffForHumans() }} | {{ $apiToken->last_accessed ? $apiToken->last_accessed->diffForHumans() : '-' }} | {{ __('Delete') }} |
{{ __('Your API Token will appear here') }}
@endif