Deploy Ladill Meet / deploy (push) Successful in 42s
Enforce invite-only room access, validate invite emails on create, assign attendee role for listener invitations, and add invite UI on the room show page. Redesign meetings, rooms, conferences, and webinars indexes to match the Events hero, stats cards, and icon list layout. Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
788 B
PHP
18 lines
788 B
PHP
<x-app-layout title="Webinars">
|
|
@include('meet.partials.index-page', [
|
|
'badge' => 'Stage mode · Q&A · Registration',
|
|
'title' => 'Your webinars',
|
|
'description' => 'Host stage-mode events for large audiences. Billed at GHS '.number_format(config('meet.billing.price_per_participant_ghs', 0.30), 2).' per participant.',
|
|
'createUrl' => route('meet.webinars.create'),
|
|
'createLabel' => 'Schedule webinar',
|
|
'stats' => $stats,
|
|
'listTitle' => 'Your webinars',
|
|
'emptyMessage' => 'No webinars yet. Schedule your first webinar to get started.',
|
|
'items' => $items,
|
|
'icon' => 'meet-icons/webinar.svg',
|
|
'iconBg' => 'bg-indigo-100',
|
|
])
|
|
|
|
<div class="mt-4">{{ $webinars->links() }}</div>
|
|
</x-app-layout>
|