country = request()->route('country'); } public function with(): array { return [ 'meetup' => $this->meetup, 'events' => $this->meetup->meetupEvents() ->where('start', '>=', now()) ->orderBy('start', 'asc') ->get(), ]; } }; ?>
{{ $meetup->name }} {{ $meetup->city->name }}, {{ $meetup->city->country->name }}
@if($meetup->intro)
{{ __('Über uns') }} {!! $meetup->intro !!}
@endif
{{ __('Kontakt & Links') }}
@if($meetup->webpage) Webseite @endif @if($meetup->telegram_link) Telegram @endif @if($meetup->twitter_username) Twitter/X @endif @if($meetup->matrix_group) Matrix @endif @if($meetup->signal) Signal @endif @if($meetup->simplex) SimpleX @endif @if($meetup->nostr)
Nostr {{ $meetup->nostr }}
@endif
@if($meetup->community)
Community

{{ $meetup->community }}

@endif
@php $attribution = '© OpenStreetMap contributors'; @endphp
{{ __('Standort') }}

{{ __('Zoom = STRG+Scroll') }}

@if($events->isNotEmpty())
{{ __('Kommende Veranstaltungen') }}
@endif