18 lines
670 B
PHP
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>
|