Files
ladill-meet/resources/views/meet/conferences/index.blade.php
T
isaaccladandCursor 46d630221a
Deploy Ladill Meet / deploy (push) Successful in 42s
Wire space listener email invites and restyle Meet index pages.
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>
2026-07-04 02:07:27 +00:00

18 lines
817 B
PHP

<x-app-layout title="Conferences">
@include('meet.partials.index-page', [
'badge' => 'Multi-speaker · Stage · Panels',
'title' => 'Your conferences',
'description' => 'Run multi-speaker events with hosts and presenters. Billed at GHS '.number_format(config('meet.billing.price_per_participant_ghs', 0.30), 2).' per participant.',
'createUrl' => route('meet.conferences.create'),
'createLabel' => 'Schedule conference',
'stats' => $stats,
'listTitle' => 'Your conferences',
'emptyMessage' => 'No conferences yet. Schedule your first conference to get started.',
'items' => $items,
'icon' => 'meet-icons/panel.svg',
'iconBg' => 'bg-violet-100',
])
<div class="mt-4">{{ $conferences->links() }}</div>
</x-app-layout>