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
669 B
PHP
16 lines
669 B
PHP
<x-app-layout title="Rooms">
|
|
@include('meet.partials.index-page', [
|
|
'badge' => 'Audio · Speakers · Listeners',
|
|
'title' => 'Your rooms',
|
|
'description' => 'Host private audio discussions, assign speakers, invite listeners by email, and promote people to speak during the live session.',
|
|
'createUrl' => route('meet.spaces.create'),
|
|
'createLabel' => 'Create room',
|
|
'stats' => $stats,
|
|
'listTitle' => 'Your rooms',
|
|
'emptyMessage' => 'No rooms yet. Create your first room to host a private discussion.',
|
|
'items' => $items,
|
|
])
|
|
|
|
<div class="mt-4">{{ $spaces->links() }}</div>
|
|
</x-app-layout>
|