@include('prompts.board-breadcrumb')
@foreach ($prompts as $index => $prompt)
{{ $index + 1 }} {{ $prompt->submitted_at->format('n/j/Y, g:i:s A') }}
{{ $prompt->prompt_text }}
@if ($prompt->latestRating?->feedback)

Constructive feedback

{{ $prompt->latestRating->feedback }}

@endif @if ($prompt->latestRating?->suggested_rewrite)

Suggested improved prompt

{{ $prompt->latestRating->suggested_rewrite }}

@endif @if (! $prompt->latestRating)

Not yet rated.

@endif View full detail →
@endforeach