@extends('admin.layouts.app') @section('title', 'Api Clients') @section('content')
| # | 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. | ||||||