@extends('layouts.master') @section('content')
@lang('descriptions.vak.participants.list')
@if ($event)
Teilnehmerverwaltung:{{ $event->title . ' / ' . $event->date . ' / ' . $event->time }} Uhr
Aktuelle Teilnehmeranzahl: {{ $event->details->confirmed_registrations }} / {{ $event->details->max_attendees }}
@if ($event->approval_request->status === 1) @if ($event->details->registration_closed === 0 && $event->details->confirmed_registrations !== $event->details->max_attendees) Teilnehmer manuell erfassen @endif @endif @php $title = ['herr' => 'Herr', 'frau' => 'Frau']; @endphp @foreach ($event->registrations as $registration) @if (isset($event->plus_guests->{$registration->id})) @foreach ($event->plus_guests->{$registration->id} as $plus_guest) @endforeach @endif @endforeach
Anrede Vorname Nachname E-Mail-Adresse Telefonnummer Begleit
person(en)
Status
{{ $title[$registration->title] }} {{ $registration->first_name }} {{ $registration->last_name }} {{ $registration->email }} {{ $registration->telephone }} {{ $registration->plus }} @if ($registration->active === 0) unbestätigt @else bestätigt @endif @if ($event->approval_request->status === 1) edit
delete
@endif
{{ $title[$plus_guest->title] }} {{ $plus_guest->first_name }} {{ $plus_guest->last_name }} - - - - -
@if (count($event->registrations) > 0) @if ((time() - strtotime($event->created_at)) / (24 * 60 * 60) < 8 * 7) @endif
TEILNEHMERLISTE
NAMENSSCHILDER
MaFo Link kopieren
@php $collected_emails = ''; foreach ($event->registrations as $registration) { if ($registration->active === 1) { $collected_emails .= $registration->email . ', '; } } @endphp @endif
@endif
@endsection @section('back_button') Zurück @endsection