#{{ $article->id }} {{ $article->title }}
@if(($article->status ?? 'published') === 'draft')
Concept (AI)
@endif
@if(($article->status ?? 'published') === 'draft')
@endif
@if($article->note)
LLM note: {{ \Illuminate\Support\Str::limit($article->note, 180) }}
@endif
@if(($article->allowed_actions ?? []) !== [])
@foreach($article->allowed_actions as $action)
{{ $action }}
@endforeach
@endif
{{ \Illuminate\Support\Str::limit($article->content, 140) }}
@error("articleNotes.{$article->id}")
{{ $message }}
@enderror
@error("articleAllowedActions.{$article->id}.*")
{{ $message }}
@enderror
@if($quickReplyOptions->isEmpty())
Nog geen actieve snelantwoorden beschikbaar.
@else
@foreach($quickReplyOptions as $quickReply)
@endforeach
@endif
@error("articleQuickReplies.{$article->id}.*")
{{ $message }}
@enderror