add visible_on_map field to meetups table

This commit is contained in:
HolgerHatGarKeineNode
2023-08-07 15:48:11 +02:00
parent 34e065a06e
commit fd0852be14

View File

@@ -31,7 +31,6 @@ class MeetupEventTable extends Component
{
return view('livewire.meetup.meetup-event-table', [
'markers' => MeetupEvent::query()
->where('visible_on_map', true)
->with([
'meetup.city.country',
])