@extends('sendportal::layouts.app') @section('content')
{{ __('API Tokens') }}
@if ($tokens->isEmpty())

No API tokens have been generated.

@else @foreach ($tokens as $token) @endforeach
Token Description Created At Actions
{{ $token->api_token }} {{ $token->description }} {{ $token->created_at }}
@csrf @method('DELETE')
@endif
{{ __('Add New Token') }}
@csrf
@endsection()