Fix Blade syntax error on event speakers page.
Deploy Ladill Events / deploy (push) Successful in 42s
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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user