Files
ladill-meet/resources/views/meet/webinars/index.blade.php
T
isaaccladandCursor 1705e6b435
Deploy Ladill Meet / deploy (push) Successful in 1m31s
Keep app pages light, move join actions to meeting details, fix join URL.
Force light color-scheme on app shells while scoping dark UI to the live room; remove join/restart from list cards and consolidate start/join/rejoin on the details action row; route Join meeting through /r/ so participants are registered before entering /room/.

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

23 lines
975 B
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,
'detailsRoute' => route('meet.webinars.show', $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>