@extends('admin.layouts.app') @section('title', 'Api Clients') @section('content')

Api Clients

{{-- @include('admin.api_clients.filters') --}}
@forelse ($clients as $client) @empty @endforelse
# Name Website API Key Secret (Partial) Status Action
{{ $loop->iteration }} {{ $client->name }} {{ $client?->ecommerceWebsite->name ?? '' }} {{ $client->api_key }} {{ substr($client->decryptedSecret, 0, 10) . '****' }} @if ($client->is_active) Active @else Inactive @endif
No API client found.
{{-- --}}
@endsection