Deploy Ladill Meet / deploy (push) Failing after 7s
Phases 0–18: core meetings, webinar, breakouts, team chat, live streaming, town hall, billing, and Ladill Mail calendar wiring. Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
906 B
PHP
18 lines
906 B
PHP
<x-app-layout title="Meeting templates">
|
|
<div class="flex items-center justify-between">
|
|
<h1 class="text-xl font-semibold text-slate-900">Meeting templates</h1>
|
|
<a href="{{ route('meet.templates.create') }}" class="btn-primary">New template</a>
|
|
</div>
|
|
|
|
<div class="mt-4 grid gap-3 sm:grid-cols-2">
|
|
@forelse ($templates as $template)
|
|
<div class="rounded-2xl border border-slate-200 bg-white p-4">
|
|
<h3 class="font-medium text-slate-900">{{ $template->name }}</h3>
|
|
<p class="mt-1 text-sm text-slate-500">{{ $template->duration_minutes }} min @if($template->is_default) · Default @endif</p>
|
|
</div>
|
|
@empty
|
|
<p class="col-span-full rounded-2xl border border-dashed border-slate-200 bg-white p-8 text-center text-sm text-slate-500">No templates yet.</p>
|
|
@endforelse
|
|
</div>
|
|
</x-app-layout>
|