{{-- TITLE --}}
{{-- DATE & TIME --}}
{{-- DATE --}}
{{ t('events.date') }}
{{-- MEHRTÄGIG --}}
{{ t('events.multiday') }}
{{-- MULTI DAY EXCEPTIONS --}} @if($is_multi_day)
{{ t('events.custom_days') }}
@foreach($this->days as $day) @php $d = $day->format('Y-m-d'); $has = isset($exceptions[$d]); @endphp
{{ $day->translatedFormat('D d.m') }}
@if($has)
@endif
@endforeach
@endif {{-- MULTI DATE --}} @if($is_multi_day)
{{ t('common.from') }}
{{ t('common.to') }}
@endif {{-- TIME --}} @if(!$is_all_day)
{{ t('events.time') }}
@endif {{-- ALL DAY --}}
{{ t('events.all_day') }}
{{-- COLOR --}}
@foreach(['#6366f1','#22c55e','#ef4444','#f59e0b','#0ea5e9'] as $c) @endforeach
{{-- TEILNEHMER --}}
{{-- Ausgewählte Teilnehmer als Chips --}} @if(count($attendees) > 0)
@foreach($attendees as $attendee) {{ $attendee['name'] }} @endforeach
@endif {{-- Suchfeld --}}
{{-- Dropdown Vorschläge --}} @if(count($attendeeSuggestions) > 0)
@foreach($attendeeSuggestions as $suggestion) @endforeach
@endif
{{-- NOTES --}}
{{-- ERINNERUNGEN --}}
@php $locale = auth()->user()->locale ?? 'de'; @endphp {{-- Bestehende Erinnerungen --}} @foreach($reminders as $i => $r)
@if(($r['type'] ?? '') === 'before') @if(($r['minutes'] ?? 0) >= 1440) {{ t('events.reminder_1day') }} @elseif(($r['minutes'] ?? 0) >= 60) {{ ($r['minutes'] ?? 0) / 60 }}{{ t('events.reminder_h_before') }} @else {{ $r['minutes'] ?? 30 }}{{ t('events.reminder_min_before') }} @endif @elseif(($r['type'] ?? '') === 'time_of_day') {{ t('events.reminder_on_day_prefix') }}{{ $r['time'] ?? '' }}{{ t('events.reminder_clock_suffix') }} @else {{ t('events.reminder_prev_day_prefix') }}{{ $r['time'] ?? '' }}{{ t('events.reminder_clock_suffix') }} @endif
@endforeach {{-- Hinzufügen --}}

{{ t('events.reminder_before_section') }}

@foreach([ ['label' => '10 Min', 'min' => 10], ['label' => '30 Min', 'min' => 30], ['label' => '1 Std', 'min' => 60], ['label' => '2 Std', 'min' => 120], ['label' => '1 Tag', 'min' => 1440], ] as $o) @endforeach

{{ t('events.reminder_on_day_section') }}

@foreach(['07:00', '08:00', '09:00', '12:00'] as $time) @endforeach

{{ t('events.reminder_day_before_section') }}

@foreach(['17:00', '18:00', '20:00'] as $time) @endforeach
{{-- Custom Zeit --}}

{{ t('events.reminder_custom_time') }}

{{-- WIEDERHOLUNG --}}
@if($recurrence)
{{ t('events.recurrence_end') }}
@endif