PHP Classes

File: chatapp/resources/views/livewire/chat/users.blade.php

Recommend this page to a friend!
  Classes of Faris AL-Otabi   Chat App Laravel   chatapp/resources/views/livewire/chat/users.blade.php   Download  
File: chatapp/resources/views/livewire/chat/users.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Chat App Laravel
Chat systen that support multiple rooms
Author: By
Last change:
Date: 9 months ago
Size: 1,418 bytes
 

Contents

Class file image Download
<div class="bg-white overflow-hidden shadow-sm sm:rounded-lg col-span-3">
                <div class="p-6 text-gray-900">
                    <h3 class="font-semibold text-lg text-gray-800 leading-tight">
                        Users
                    </h3>

                    <ul class="space-y-1 mt-3">
                        @foreach ($this->users as $user)
                            <li class="flex items-end justify-between space-x-1 bg-gray-100 rounded-lg px-3 py-1">
                                <span>{{ $user->name }}</span>

                                <svg @class([
                                    'size-4 animate-bounce transition-opacity opacity-0',
                                    'opacity-100' => in_array($user->id, $typingIds),
                                ])" xmlns="http://www.w3.org/2000/svg" fill="none"
                                    viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
                                    <path stroke-linecap="round" stroke-linejoin="round"
                                        d="M6.75 12a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM12.75 12a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM18.75 12a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z" />
                                </svg>
                            </li>
                        @endforeach
                    </ul>
                </div>
            </div>