mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
add attendees export
This commit is contained in:
@@ -43,6 +43,19 @@ Route::middleware([
|
||||
->name('form');
|
||||
});
|
||||
|
||||
/*
|
||||
* Exports
|
||||
* */
|
||||
Route::middleware([
|
||||
'auth',
|
||||
])
|
||||
->as('export.')
|
||||
->prefix('/export')
|
||||
->group(function () {
|
||||
Route::get('/meetup-event/{meetupEvent}', \App\Http\Controllers\Export\MeetupEventAttendeesExportController::class)
|
||||
->name('meetupEvent');
|
||||
});
|
||||
|
||||
/*
|
||||
* Content Creator
|
||||
* */
|
||||
|
||||
Reference in New Issue
Block a user