@section('page-title') {{ __('API Keys') }} @endsection @section('breadcrumbs') @endsection
@if($items->count() > 0) @foreach($items as $item) @endforeach @else @endif
{{ __('ID') }} {{ __('API Key') }} {{ __('Description') }} {{ __('IP Address') }} {{ __('Status') }} {{ __('Created') }} {{ __('Action') }}

{{ $item->id }}

{{ $item->api_key }}

{{ $item->description != '' ? $item->description : '-' }}

{{ $item->ip_address != '' ? $item->ip_address : '-' }}

@if($item->is_active) {{ __('On') }} @else {{ __('Off') }} @endif {{ formatDatetime($item->created_at) }}

{{ __('No products found') }}

{{ $items->links() }}
@include('livewire.api-keys.modal-add-item') @include('livewire.api-keys.modal-update-item') @include('common.modal-delete-item', ['name' => 'api Key']) @include('common.confirm-bulk-action')