kusowl 2f566cc4d8 feature(Live Support): add chat ui
- add chat ui for live support
- fix misc bugs
2026-02-09 19:07:16 +05:30

18 lines
670 B
PHP

<x-layout>
<div class="flex">
<x-dashboard.broker.sidebar.layout>
<div class="">
<div class="flex space-x-4 items-center border-b border-b-gray-300 pb-6 mb-4">
<x-logo/>
<p class="font-bold text-2xl whitespace-nowrap group-[.w-20]:hidden">Messages</p>
</div>
{{$sidebarItems ?? ''}}
</div>
</x-dashboard.broker.sidebar.layout>
<section
class="flex relative flex-col space-y-4 md:space-y-8 bg-[#F9FAFB] overflow-y-auto overflow-x-hidden h-screen w-full">
{{$slot}}
</section>
</div>
</x-layout>