@if($event->thumbnail_url)
@endif
{{ $event->name }}
@if($event->description)
{!! nl2br(e($event->description)) !!}
@endif @if($event->location)
開催場所:
{{ $event->location }}
@endif
参加費:
{{ \App\Support\EventSettingsNormalizer::participationFeeLabel($event) }}
@if($event->apply_start_at || $event->apply_end_at)
申込受付: {{ $event->apply_start_at?->timezone(config('app.timezone'))->format('Y/m/d H:i') ?? '制限なし' }} 〜 {{ $event->apply_end_at?->timezone(config('app.timezone'))->format('Y/m/d H:i') ?? '制限なし' }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if($acceptanceMessage ?? null)
{{ $acceptanceMessage }}
@elseif($schedules->isEmpty())
現在受付中の枠がありません。
@else @include('public.event.partials._schedule_slots') @endif