@extends('admin.layouts.master') @section('title', 'Openai') @section('maincontent') @include('admin.layouts.topbar',$data)
@if ($errors->any()) @endif
{{ __('All Openai') }}
@foreach($openai as $key => $test) @if(isset($test)) @if($test->generate == 'Image Generate') @if(!empty($test->response)) @endif @else @php $jsonData = $test->response; $decodedData = json_decode($jsonData, true); @endphp @endif @endif @endforeach
# {{ __('Genrate') }} {{ __('Prompt') }} {{ __('Response') }} {{ __('Action') }}
1 {{ $test->generate }} {{ $test->prompt }}
{{ $decodedData['content'] ?? ''}}


@endsection @section('script') @endsection