{{-- The Jira stories a target row is linked to, each removable. The first one is the primary key — the one every report and status page reads. --}} @if (! empty($row['linked']))
Linked {{ count($row['linked']) === 1 ? 'story' : 'stories' }} · {{ count($row['linked']) }}
@foreach ($row['linked'] as $i => $l)
{{ $l['key'] }} @if ($i === 0 && count($row['linked']) > 1) primary @endif {{ $l['summary'] ?? '—' }} @if (! empty($l['status']))· {{ $l['status'] }}@endif
@endforeach
@endif