country = request()->route('country', config('app.domain_country')); } public function deleteEvent(MeetupEvent $event): void { if ($this->meetup->belongsToMe) { $event->delete(); $this->dispatch('event-deleted'); Flux::modals()->close(); $this->meetup->refresh(); } } public function with(): array { return [ 'meetup' => $this->meetup, 'events' => $this->meetup ->meetupEvents() ->where('start', '>=', now()) ->orderBy('start', 'asc') ->get(), ]; } }; ?> @section('meta') @php $SEOData = SeoDataAttribute::getData('meetups_landingpage'); $SEOData->title = $this->meetup->name; $SEOData->description = $this->meetup->intro ? str($this->meetup->intro)->limit(50) : $SEOData->description; $SEOData->image = $this->meetup->getFirstMediaUrl('logo'); @endphp {!! seo($SEOData)->render() !!} @endsection
{{ $meetup->nostr }}
@if ($meetup->community === 'bitcoin') {{ __('Allgemeine Bitcoin Community') }} @elseif ($meetup->community === 'einundzwanzig') {{ __('Einundzwanzig Community') }} @else {{ $meetup->community }} @endif
{{ __('Zoom = STRG+Scroll') }}