This commit is contained in:
HolgerHatGarKeineNode
2023-02-07 09:54:35 +01:00
parent c501b68969
commit 5b475cc660
4 changed files with 3 additions and 5 deletions

View File

@@ -76,7 +76,6 @@ class MeetupEventTable extends DataTableComponent
->label(
fn($row, Column $column) => view('columns.meetup_events.link')
->withRow($row)
->withCountry($this->country)
),
];
}
@@ -87,7 +86,7 @@ class MeetupEventTable extends DataTableComponent
->where('meetup_events.start', '>=', now())
->whereHas('meetup.city.country', fn($query) => $query->where('code', $this->country))
->with([
'meetup',
'meetup.city.country',
]);
}
}