Fix Blade syntax error on event speakers page.
Deploy Ladill Events / deploy (push) Successful in 42s

Split inline @if directives in programme assignment rows so the speakers view compiles and loads without a 500.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-03 15:18:50 +00:00
co-authored by Cursor
parent 2084cbc852
commit 42d997a599
2 changed files with 31 additions and 1 deletions
+5 -1
View File
@@ -77,7 +77,11 @@
<div class="flex flex-wrap items-start justify-between gap-2 py-3 text-sm">
<div>
<p class="font-semibold text-slate-900">{{ $assignment['name'] }}</p>
<p class="text-xs text-slate-500">{{ $assignment['session'] ?: 'Session' }}@if($assignment['day']) · {{ $assignment['day'] }}@endif@if($assignment['time']) · {{ $assignment['time'] }}@endif</p>
<p class="text-xs text-slate-500">
{{ $assignment['session'] ?: 'Session' }}
@if($assignment['day'])<span> · {{ $assignment['day'] }}</span>@endif
@if($assignment['time'])<span> · {{ $assignment['time'] }}</span>@endif
</p>
</div>
<span class="rounded-full bg-slate-100 px-2 py-0.5 text-[11px] font-medium text-slate-600">Programme</span>
</div>