Add panel discussions option to webinars and widen audience strip.
Deploy Ladill Meet / deploy (push) Successful in 2m1s

Webinars can enable multi-speaker stage layout at creation or on the details page; plenary view shows 12 attendee avatars before the overflow count.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-01 21:29:22 +00:00
co-authored by Cursor
parent 1037cd6ee6
commit f98d66c9f9
6 changed files with 70 additions and 1 deletions
+1
View File
@@ -134,6 +134,7 @@ Route::middleware(['auth', 'platform.session'])->group(function () {
Route::post('/webinars', [WebinarController::class, 'store'])->name('meet.webinars.store');
Route::get('/webinars/{room}', [WebinarController::class, 'show'])->name('meet.webinars.show');
Route::post('/webinars/{room}/start', [WebinarController::class, 'start'])->name('meet.webinars.start');
Route::post('/webinars/{room}/settings', [WebinarController::class, 'updateSettings'])->name('meet.webinars.settings.update');
Route::get('/conferences', [ConferenceController::class, 'index'])->name('meet.conferences.index');
Route::get('/conferences/create', [ConferenceController::class, 'create'])->name('meet.conferences.create');