@extends('admin.layouts.app') @section('title', $event->title) @section('header', $event->title) @section('breadcrumb') {{ __('events.title') }} {{ $event->title }} @endsection @section('header-actions') @if($event->status === 'published') {{ __('events.public_page') }}
@endif {{ __('common.edit') }} @endsection @section('content') @php $statusMap = ['draft'=>'badge-secondary','published'=>'badge-success','cancelled'=>'badge-danger','completed'=>'badge-primary']; @endphp{{ __('common.description') }}
{{ $event->description }}
| {{ __('common.name') }} | {{ __('common.email') }} | {{ __('common.phone') }} | {{ __('events.col_guests') }} | {{ __('events.col_checkin') }} | {{ __('common.registered') }} | |
|---|---|---|---|---|---|---|
| {{ $reg->name }} | {{ $reg->email }} | {{ $reg->phone ?? '—' }} | {{ $reg->guests }} | @if($reg->checked_in_at) {{ $reg->checked_in_at->format('H:i') }} @else — @endif | {{ $reg->created_at->format('Y. m. d. H:i') }} | |
| {{ __('events.no_regs') }} | ||||||
| # | {{ __('common.name') }} | {{ __('common.email') }} | {{ __('events.col_guests') }} | {{ __('common.registered') }} | |
|---|---|---|---|---|---|
| {{ $wl->waitlist_position }} | {{ $wl->name }} | {{ $wl->email }} | {{ $wl->guests > 0 ? '+' . $wl->guests : '—' }} | {{ $wl->created_at->format('Y. m. d. H:i') }} | @if($event->capacity && $event->registrations->count() < $event->capacity) @endif |
| {{ __('events.waitlist_empty') }} | |||||
| {{ __('common.name') }} | {{ __('common.status') }} | {{ __('common.registered') }} |
|---|---|---|
| @if($rsvp->person) {{ $rsvp->person->last_name }} {{ $rsvp->person->first_name }} @else — @endif | {{ $rsvp->status ?? '—' }} | {{ $rsvp->created_at->format('Y. m. d.') }} |
| {{ __('events.no_rsvp') }} | ||