Server IP : 66.29.132.124 / Your IP : 18.117.101.250 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/book24.ng/resources/views/vendor/Chatify/layouts/ |
Upload File : |
{{-- -------------------- The default card (white) -------------------- --}} @if($viewType == 'default') @if($from_id != $to_id) <div class="message-card" data-id="{{ $id }}"> <p>{!! ($message == null && $attachment != null && @$attachment[2] != 'file') ? $attachment[1] : nl2br($message) !!} <sub title="{{ $fullTime }}">{{ $time }}</sub> {{-- If attachment is a file --}} @if(@$attachment[2] == 'file') <a href="{{ route(config('chatify.attachments.download_route_name'),['fileName'=>$attachment[0]]) }}" style="color: #595959;" class="file-download"> <span class="fas fa-file"></span> {{$attachment[1]}}</a> @endif </p> </div> {{-- If attachment is an image --}} @if(@$attachment[2] == 'image') <div> <div class="message-card"> <div class="image-file chat-image" style="width: 250px; height: 150px;background-image: url('{{ asset('storage/'.config('chatify.attachments.folder').'/'.$attachment[0]) }}')"> </div> </div> </div> @endif @endif @endif {{-- -------------------- Sender card (owner) -------------------- --}} @if($viewType == 'sender') <div class="message-card mc-sender" data-id="{{ $id }}"> <p>{!! ($message == null && $attachment != null && @$attachment[2] != 'file') ? $attachment[1] : nl2br($message) !!} <sub title="{{ $fullTime }}" class="message-time"> <span class="fas fa-{{ $seen > 0 ? 'check-double' : 'check' }} seen"></span> {{ $time }}</sub> {{-- If attachment is a file --}} @if(@$attachment[2] == 'file') <a href="{{ route(config('chatify.attachments.download_route_name'),['fileName'=>$attachment[0]]) }}" class="file-download"> <span class="fas fa-file"></span> {{$attachment[1]}}</a> @endif </p> </div> {{-- If attachment is an image --}} @if(@$attachment[2] == 'image') <div> <div class="message-card mc-sender"> <div class="image-file chat-image" style="width: 250px; height: 150px;background-image: url('{{ asset('storage/'.config('chatify.attachments.folder').'/'.$attachment[0]) }}')"> </div> </div> </div> @endif @endif