Deploy Ladill Meet / deploy (push) Successful in 1m29s
Split town_hall into a Conferences sidebar flow and Spaces-style Rooms with host/speaker/listener roles; enforce audio-only LiveKit UI for rooms; show schedule icon on mobile meetings index. Co-authored-by: Cursor <cursoragent@cursor.com>
82 lines
4.5 KiB
PHP
82 lines
4.5 KiB
PHP
<x-app-layout title="{{ $room->title }}">
|
|
<div class="mx-auto max-w-2xl">
|
|
<div>
|
|
<p class="text-xs font-semibold uppercase tracking-wide text-violet-600">Conference</p>
|
|
<h1 class="text-2xl font-semibold text-slate-900">{{ $room->title }}</h1>
|
|
<p class="mt-1 text-sm text-slate-500">{{ config('meet.room_statuses')[$room->status] ?? $room->status }}</p>
|
|
</div>
|
|
|
|
@if ($errors->any())
|
|
<div class="mt-4 rounded-lg border border-red-200 bg-red-50 px-4 py-3 text-sm text-red-700">
|
|
{{ $errors->first() }}
|
|
</div>
|
|
@endif
|
|
|
|
<div class="mt-4 rounded-xl border border-violet-100 bg-violet-50 px-4 py-3 text-sm text-violet-900">
|
|
Multi-speaker event with assigned hosts and presenters.
|
|
Billed at <span class="font-medium">GHS {{ number_format(config('meet.billing.price_per_participant_ghs', 0.30), 2) }} per participant</span>.
|
|
@if ($room->setting('green_room'))
|
|
Green room is enabled — presenters rehearse before the audience joins live.
|
|
@endif
|
|
</div>
|
|
|
|
<div class="mt-6 rounded-2xl border border-slate-200 bg-white p-6">
|
|
<h2 class="text-sm font-medium text-slate-700">Join link</h2>
|
|
<div class="mt-2 flex gap-2">
|
|
<input type="text" readonly value="{{ $room->joinUrl() }}" class="flex-1 rounded-lg border-slate-300 bg-slate-50 text-sm font-mono">
|
|
<x-copy-button :text="$room->joinUrl()" class="btn-secondary btn-secondary-sm shrink-0" />
|
|
</div>
|
|
|
|
<div class="btn-group mt-4">
|
|
@if ($room->status === 'live' && $room->activeSession())
|
|
<a href="{{ route('meet.join', $room) }}" class="btn-primary btn-primary-sm">Join conference</a>
|
|
@elseif ($room->status === 'scheduled')
|
|
<form method="POST" action="{{ route('meet.conferences.start', $room) }}" class="inline">
|
|
@csrf
|
|
<button type="submit" class="btn-primary btn-primary-sm">Start conference</button>
|
|
</form>
|
|
@elseif ($room->canRestart())
|
|
<form method="POST" action="{{ route('meet.conferences.start', $room) }}" class="inline">
|
|
@csrf
|
|
<button type="submit" class="btn-primary btn-primary-sm">{{ $room->restartLabel() }}</button>
|
|
</form>
|
|
@endif
|
|
<a href="{{ route('meet.rooms.ical', $room) }}" class="btn-secondary btn-secondary-sm">Download iCal</a>
|
|
<a href="{{ route('meet.rooms.qr', $room) }}" target="_blank" class="btn-secondary btn-secondary-sm">QR code</a>
|
|
@if ($room->sessions->isNotEmpty())
|
|
<a href="{{ route('meet.rooms.attendance', $room) }}" class="btn-secondary btn-secondary-sm">Attendance CSV</a>
|
|
@endif
|
|
<a href="{{ route('meet.invitations.index', $room) }}" class="btn-secondary btn-secondary-sm">Manage invitations</a>
|
|
</div>
|
|
|
|
@if ($room->passcode)
|
|
<p class="mt-3 text-sm text-slate-600">Passcode: <span class="font-mono font-medium">{{ $room->passcode }}</span></p>
|
|
@endif
|
|
|
|
@if ($room->scheduled_at)
|
|
<p class="mt-3 text-sm text-slate-600">
|
|
Scheduled: {{ $room->scheduled_at->timezone($room->timezone)->format('M j, Y g:i A T') }}
|
|
</p>
|
|
@endif
|
|
|
|
@if ($room->description)
|
|
<p class="mt-3 text-sm text-slate-600">{{ $room->description }}</p>
|
|
@endif
|
|
</div>
|
|
|
|
@if ($room->sessions->isNotEmpty())
|
|
<div class="mt-6 rounded-2xl border border-slate-200 bg-white p-6">
|
|
<h2 class="text-sm font-medium text-slate-700">Sessions</h2>
|
|
<ul class="mt-3 divide-y divide-slate-100 text-sm">
|
|
@foreach ($room->sessions as $session)
|
|
<li class="flex items-center justify-between py-2">
|
|
<span>{{ $session->started_at?->format('M j, Y g:i A') ?? 'Pending' }}</span>
|
|
<span class="text-slate-500">{{ $session->peak_participants }} participants · {{ config('meet.session_statuses')[$session->status] ?? $session->status }}</span>
|
|
</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</x-app-layout>
|