@extends('layouts.app') @section('content')

Welcome to your Mail Dashboard

{{--

AI Prompt Submission

@if (session('success')) @endif @if ($errors->any()) @endif
@csrf
--}} {{-- Submitted Prompts data --}} {{--

Submitted Prompts

@forelse($prompts as $index => $prompt) @empty @endforelse
# AI Prompt Keywords Date Time Used
{{ $index + 1 }} {{ $prompt->ai_prompt ?: '-' }} {{ $prompt->keywords ?: '-' }} {{ $prompt->created_at->format('d-m-Y') }} {{ $prompt->created_at->format('h:i A') }} @if ($prompt->status == 0) Yes @else No @endif
No prompts found.
--}} {{-- Submitted Prompts data --}}
{{--
Email ID: 248

Summary :- here will display genrated value

--}} @endsection