@extends('core::layouts.master') @section('title') {{ __('user::general.API Keys') }} @endsection @section('styles') @stop @section('content')

{{ __('user::general.API Keys') }} / {{ $user->first_name }} {{ $user->last_name }} {{ trans_choice('core::general.back',1) }}

@include('user::themes.adminlte.user.profile.user_profile_menu')
@foreach($user->clients as $client) @endforeach
{{ trans_choice('core::general.id',1) }} {{ trans_choice('core::general.name',1) }} {{ trans_choice('general.created_at',1) }} {{ trans_choice('core::general.action',1) }}
{{$client->id}} {{$client->name}} {{$client->created_at}}

{{ __('user::general.Personal Access Tokens') }}

@foreach($tokens as $token) @endforeach
{{ trans_choice('core::general.name',1) }} {{ trans_choice('general.created_at',1) }} {{ trans_choice('core::general.action',1) }}
{{$token->name}} {{$token->created_at}}
{{$tokens->links()}}
@endsection @section('scripts') @endsection