@extends('layouts.app') @section('title', 'API Clients') @php use Illuminate\Support\Str; @endphp @section('breadcrumb') @endsection @section('content')

API Clients

Add New Client
API Clients List
@if($clients->count() > 0)
@foreach($clients as $client) @endforeach
Name Status Rate Limit Last Used Created Actions
{{ $client->name }} @if($client->description)
{{ Str::limit($client->description, 50) }} @endif
@if($client->is_active) Active @else Inactive @endif {{ $client->rate_limit ?? 'Unlimited' }} @if($client->rate_limit) /min @endif {{ $client->last_used_at ? $client->last_used_at->format('M d, Y') : 'Never' }} {{ $client->created_at->format('M d, Y') }}
@csrf @method('DELETE')
{{ $clients->links() }}
@else

No API Clients Found

Get started by creating your first API client.

Create New API Client
@endif
@endsection