mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
TTS
This commit is contained in:
@@ -33,7 +33,7 @@ class LandingPage extends Component
|
||||
'meetup.city.country',
|
||||
])
|
||||
->where('meetup_events.meetup_id', $this->meetup->id)
|
||||
->where('meetup_events.start', '>=', now())
|
||||
->where('meetup_events.start', '>=', now()->subDay())
|
||||
->orderBy('start')
|
||||
->get(),
|
||||
'events' => MeetupEvent::query()
|
||||
@@ -41,7 +41,7 @@ class LandingPage extends Component
|
||||
'meetup.city.country',
|
||||
])
|
||||
->where('meetup_events.meetup_id', $this->meetup->id)
|
||||
->where('meetup_events.start', '>=', now())
|
||||
->where('meetup_events.start', '>=', now()->subDay())
|
||||
->orderBy('start')
|
||||
->get()
|
||||
->map(fn ($event) => [
|
||||
|
||||
Reference in New Issue
Block a user