@php
// Unique date key per topic
$dateKey = strtolower(\Carbon\Carbon::parse($topic->masterDate->date)->format('M'))
. \Carbon\Carbon::parse($topic->masterDate->date)->format('d');
// Unique ID combining date and loop index
$uniqueId = $dateKey . '-' . $loop->index;
@endphp
{{ $topic->title }}
{!! $topic->description !!}