btc-meetups updated

This commit is contained in:
HolgerHatGarKeineNode
2023-02-08 14:36:14 +01:00
parent 811bcf3534
commit 4d1eda7c00

View File

@@ -56,7 +56,11 @@ Route::middleware([])
])
->where('community', '=', 'einundzwanzig')
->whereHas('city',
fn($query) => $query->whereNotNull('cities.simplified_geojson'))
fn($query) => $query
->whereNotNull('cities.simplified_geojson')
->whereNotNull('cities.population')
->whereNotNull('cities.population_date')
)
->get()
->map(fn($meetup) => [
'id' => $meetup->slug,