@extends('admin.layouts.master') @section('title', 'Openai') @section('maincontent') @include('admin.layouts.topbar',$data)
{{ $error}}
@endforeach# | {{ __('Genrate') }} | {{ __('Prompt') }} | {{ __('Response') }} | {{ __('Action') }} | @foreach($openai as $key => $test) @if(isset($test))|
---|---|---|---|---|---|
1 {{ __('Are You Sure') }} ?{{ __('Do you really want to delete selected item ? This process cannot be undone') }}. |
{{ $test->generate }} | {{ $test->prompt }} | @if($test->generate == 'Image Generate') @if(!empty($test->response))@endif @else @php $jsonData = $test->response; $decodedData = json_decode($jsonData, true); @endphp | {{ $decodedData['content'] ?? ''}} | @endif
{{ __('Delete') }}{{ __('Are You Sure ?')}}{{ __('Do you really want to delete')}} {{$test->title}} ? {{ __('This process cannot be undone.')}} |