@extends('admin.layout.master') @section('title') Manage Chatgpt API Keys @endsection @section('content')
Manage Chatgpt API Keys
@forelse($keys as $t=>$key) {{-- update modal--}} @empty @endforelse
Id Heading API Key Status Created At Edit Delete
{{ $t+1 }} {{ $key->heading }} {{ Str::limit(decrypt($key->apikey),10) }} @if($key->status=='active') Active @else Inactive @endif {{ Carbon\Carbon::parse($key->created_at)->format('d-m-Y') }}
@endsection @section('script') @endsection