Files
isaaccladandCursor 3be1215d08
Deploy Ladill Meet / deploy (push) Successful in 1m8s
Replace ghost Meet action links with shared btn components.
Webhooks, invitations, registrations, recordings, and room cancel actions match the Ladill pill-button UI.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-09 06:38:14 +00:00

30 lines
1.4 KiB
PHP

<x-app-layout title="Recordings">
<div class="flex items-center justify-between">
<h1 class="text-xl font-semibold text-slate-900">Recordings</h1>
</div>
<div class="mt-4 space-y-2">
@forelse ($recordings as $recording)
<div class="flex items-center justify-between rounded-2xl border border-slate-200 bg-white p-4">
<div>
<h3 class="font-medium text-slate-900">{{ $recording->session->room->title }}</h3>
<p class="text-sm text-slate-500">
{{ config('meet.recording_statuses')[$recording->status] ?? $recording->status }}
· {{ $recording->created_at->format('M j, Y g:i A') }}
</p>
</div>
<div class="btn-group">
<x-btn :href="route('meet.recordings.show', $recording)" variant="link" size="sm" plain>View</x-btn>
@if ($recording->hasPlayableFile())
<x-btn :href="route('meet.recordings.download', $recording)" variant="secondary" size="sm">Download</x-btn>
@endif
</div>
</div>
@empty
<p class="rounded-2xl border border-dashed border-slate-200 bg-white p-8 text-center text-sm text-slate-500">No recordings yet.</p>
@endforelse
</div>
<div class="mt-4">{{ $recordings->links() }}</div>
</x-app-layout>