Deploy Ladill Meet / deploy (push) Successful in 47s
Match the Events index card icon across meetings, rooms, conferences, and webinars. Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
638 B
PHP
16 lines
638 B
PHP
<x-app-layout title="Meetings">
|
|
@include('meet.partials.index-page', [
|
|
'badge' => 'Video · Screen share · Chat',
|
|
'title' => 'Your meetings',
|
|
'description' => 'Schedule or start instant video meetings, share your screen, and collaborate with your team.',
|
|
'createUrl' => route('meet.rooms.create'),
|
|
'createLabel' => 'Schedule meeting',
|
|
'stats' => $stats,
|
|
'listTitle' => 'Your meetings',
|
|
'emptyMessage' => 'No meetings yet. Schedule your first meeting to get started.',
|
|
'items' => $items,
|
|
])
|
|
|
|
<div class="mt-4">{{ $rooms->links() }}</div>
|
|
</x-app-layout>
|