This commit is contained in:
Benjamin Takats
2023-01-24 17:09:45 +01:00
parent e444a4e973
commit b268169b93
2 changed files with 6 additions and 6 deletions

View File

@@ -59,6 +59,8 @@ class MeetupTable extends DataTableComponent
->label(
fn($row, Column $column) => view('columns.meetups.action')
->withRow($row)
->withIcs(route('meetup.ics',
['country' => $this->country ?? $row->city->country->code, 'meetup' => $row->id]))
->withCountry($this->country)
)
->collapseOnMobile(),
@@ -92,8 +94,8 @@ class MeetupTable extends DataTableComponent
->find($id);
return to_route('meetup.table.meetupEvent', [
'country' => $this->country ?? $meetup->city->country->code,
'meetup_events' => [
'country' => $this->country ?? $meetup->city->country->code,
'meetup_events' => [
'filters' => ['bymeetupid' => $id],
]
]);