@extends('layouts.panel') @section('title', app(\App\Services\TitleService::class)->generate()) @section('content')

کلید هوش مصنوعی

@if(session('success'))
{{ session('success') }}
@endif

تنظیم کلید API

@php $activeKey = \App\Models\ApiKey::where('created_by', Auth::id()) ->where('is_active', true) ->where('type', 'chatgpt') ->orderBy('created_at', 'desc') ->first(); @endphp @if($activeKey)
اتصال برقرار
@csrf
@endif
@csrf @if($activeKey) @method('PUT') @endif
@if($activeKey) @endif

@if($activeKey) برای تغییر کلید، کلید جدید را وارد کنید @else کلید API خود را از پنل توسعه‌دهندگان دریافت کنید @endif

@endsection