{!! $tpl->displayNotification() !!}

{{ __('label.calendar_settings') }}


{{-- Connected Calendars Section --}}
{{ __('label.connected_calendars') }}
@if(count($externalCalendars) > 0) @else

{{ __('label.no_connected_calendars') }}


@endif {{-- Plugin-injected sections (Google Calendar, etc.) --}} {{-- Note: Plugin content via {!! !!} is trusted. Plugins are responsible for sanitizing their output. --}} @foreach($pluginSections as $section)
@if(isset($section['icon'])) @if(($section['iconType'] ?? 'fontawesome') === 'svg') {!! $section['icon'] !!} @else @endif @endif {{ $section['title'] }}
@if(isset($section['description']))

{{ $section['description'] }}

@endif @if(isset($section['content'])) {!! $section['content'] !!} @endif @if(isset($section['actions']))
@foreach($section['actions'] as $action) @if(isset($action['icon'])) @endif {{ $action['label'] }} @endforeach
@endif @endforeach @dispatchEvent('afterCalendarSettings')