17 lines
675 B
PHP
17 lines
675 B
PHP
<x-chat.layout>
|
|
<x-slot:sidebarItems>
|
|
<x-chat.sidebar-item :link="route('chat.show', 8)" name="Kushal Saha" avatar="Ku" message="Hi, how do i do that ?"/>
|
|
<x-chat.sidebar-item name="Jhon Doe" avatar="JD" message="How much for thr tv ?"/>
|
|
<x-chat.sidebar-item name="Jane Marry" avatar="JM" message="I will let you know"/>
|
|
</x-slot:sidebarItems>
|
|
|
|
@if(isset($recipient))
|
|
<x-chat.message-box :recipient="$recipient" :chats="$chats" />
|
|
@else
|
|
<div class="w-full h-full flex items-center justify-center">
|
|
<p class="font-bold text-5xl text-gray-400">Start a chat ! </p>
|
|
</div>
|
|
@endif
|
|
|
|
</x-chat.layout>
|