28 lines
875 B
PHP
28 lines
875 B
PHP
<x-modal.content>
|
||
<div class="p-6 space-y-4">
|
||
<h2 class="text-lg font-semibold">
|
||
{{ $event->meta->title ?? '(no title)' }}
|
||
</h2>
|
||
|
||
<p class="text-sm text-gray-600">
|
||
{{ $start->format('l, F j, Y · g:i A') }}
|
||
@unless ($start->equalTo($end))
|
||
–
|
||
{{ $end->isSameDay($start)
|
||
? $end->format('g:i A')
|
||
: $end->format('l, F j, Y · g:i A') }}
|
||
@endunless
|
||
</p>
|
||
|
||
@if ($event->meta->location)
|
||
<p class="text-sm"><strong>Where:</strong> {{ $event->meta->location }}</p>
|
||
@endif
|
||
|
||
@if ($event->meta->description)
|
||
<div class="prose max-w-none text-sm">
|
||
{!! nl2br(e($event->meta->description)) !!}
|
||
</div>
|
||
@endif
|
||
</div>
|
||
</x-modal.content>
|