Nieuw Artikel

@if (session('success'))
{{ session('success') }}
@endif
@error('title')

{{ $message }}

@enderror @error('content')

{{ $message }}

@enderror @error('note')

{{ $message }}

@enderror @error('allowedActions.*')

{{ $message }}

@enderror

Artikelen

@foreach ($articles as $article)
#{{ $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
@endforeach
{{ $articles->links() }}