Files
ladill-meet/resources/views/meet/webinars/index.blade.php
T
isaaccladandCursor d0a3361f37
Deploy Ladill Meet / deploy (push) Successful in 41s
Separate webinars from meetings and add conference billing.
Add restart meeting actions, a dedicated webinar sidebar flow billed at GHS 0.30 per participant, and reserve speaker-line space with a placeholder to prevent layout shift.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-01 18:23:04 +00:00

25 lines
1.1 KiB
PHP

<x-app-layout title="Webinars">
<div class="flex items-center justify-between">
<div>
<h1 class="text-xl font-semibold text-slate-900">Webinars</h1>
<p class="mt-1 text-sm text-slate-500">Stage-mode events billed at GHS {{ number_format(config('meet.billing.price_per_participant_ghs', 0.30), 2) }} per participant.</p>
</div>
<a href="{{ route('meet.webinars.create') }}" class="btn-primary">Schedule webinar</a>
</div>
<div class="mt-4 space-y-2">
@forelse ($webinars as $room)
@include('meet.partials.room-card', [
'room' => $room,
'live' => $room->status === 'live',
'detailsRoute' => route('meet.webinars.show', $room),
'startRoute' => route('meet.webinars.start', $room),
])
@empty
<p class="rounded-2xl border border-dashed border-slate-200 bg-white p-8 text-center text-sm text-slate-500">No webinars yet.</p>
@endforelse
</div>
<div class="mt-4">{{ $webinars->links() }}</div>
</x-app-layout>