27 lines
777 B
PHP
27 lines
777 B
PHP
<x-modal.content>
|
||
<x-modal.title>
|
||
{{ $event->meta->title ?? '(no title)' }}
|
||
</x-modal.title>
|
||
<x-modal.body>
|
||
<p class="text-gray-700">
|
||
{{ $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><strong>Where:</strong> {{ $event->meta->location }}</p>
|
||
@endif
|
||
|
||
@if ($event->meta->description)
|
||
<div>
|
||
{!! nl2br(e($event->meta->description)) !!}
|
||
</div>
|
||
@endif
|
||
</x-modal.body>
|
||
</x-modal.content>
|