|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/erp.theinteractive.co.in/storage/framework/views/ |
Upload File : |
<?php if($get == 'saved'): ?>
<table class="messenger-list-item m-li-divider <?php if('user_'.Auth::user()->id == $id && $id != "0"): ?> m-list-active <?php endif; ?>">
<tr data-action="0">
<td>
<div class="avatar av-m" style="background-color: #D9EFFF; text-align: center;">
<span class="ti ti-bookmark" style="font-size: 22px; color: #6FD943;"></span>
</div>
</td>
<td>
<p data-id="<?php echo e('user_'.Auth::user()->id); ?>"><?php echo e(__('Saved Messages')); ?> <span><?php echo e(__('You')); ?></span></p>
<span><?php echo e(__('Save messages secretly')); ?></span>
</td>
</tr>
</table>
<?php endif; ?>
<?php if($get == 'users'): ?>
<table class="messenger-list-item <?php if($user->id == $id && $id != "0"): ?> m-list-active <?php endif; ?>" data-contact="<?php echo e(!empty($user)?$user->id:0); ?>">
<tr data-action="0">
<td style="position: relative">
<?php if($user->active_status): ?>
<span class="activeStatus"></span>
<?php endif; ?>
<?php if(!empty($user->avatar)): ?>
<div class="avatar av-m"
style="background-image: url('<?php echo e(\App\Models\Utility::get_file('/'.config('chatify.user_avatar.folder').'/'.$user->avatar)); ?>');">
</div>
<?php else: ?>
<div class="avatar av-m"
style="background-image: url('<?php echo e(\App\Models\Utility::get_file('/'.config('chatify.user_avatar.folder').'/avatar.png')); ?>');">
</div>
<?php endif; ?>
</td>
<?php if(!empty($lastMessage)): ?>
<td>
<p data-id="<?php echo e($type.'_'.$user->id); ?>">
<?php echo e(strlen($user->name) > 12 ? trim(substr($user->name,0,12)).'..' : $user->name); ?>
<span class="chat-time"><?php echo e(!empty($lastMessage)?$lastMessage->created_at->diffForHumans():''); ?></span></p>
<span class="chat-msg">
<?php echo $lastMessage->from_id == Auth::user()->id
? '<span class="lastMessageIndicator">You :</span>'
: ''; ?>
<?php if($lastMessage->attachment == null): ?>
<?php echo e(strlen($lastMessage->body) > 30
? trim(substr($lastMessage->body, 0, 30)).'..'
: $lastMessage->body); ?>
<?php else: ?>
<span class="ti ti-file"></span> Attachment
<?php endif; ?>
</span>
<?php echo $unseenCounter > 0 ? "<b>".$unseenCounter."</b>" : ''; ?>
</td>
<?php else: ?>
<td></td>
<?php endif; ?>
</tr>
</table>
<?php endif; ?>
<?php if($get == 'search_item'): ?>
<table class="messenger-list-item" data-contact="<?php echo e($user->id); ?>">
<tr data-action="0">
<td style="position: relative">
<?php if($user->active_status): ?>
<span class="activeStatus"></span>
<?php endif; ?>
<?php if(!empty($user->avatar)): ?>
<div class="avatar av-m"
style="background-image: url('<?php echo e(asset('/storage/'.config('chatify.user_avatar.folder').'/'.$user->avatar)); ?>');">
</div>
<?php else: ?>
<div class="avatar av-m"
style="background-image: url('<?php echo e(asset('/storage/'.config('chatify.user_avatar.folder').'/avatar.png')); ?>');">
</div>
<?php endif; ?>
</td>
<td>
<p data-id="<?php echo e($type.'_'.$user->id); ?>">
<?php echo e(strlen($user->name) > 12 ? trim(substr($user->name,0,12)).'..' : $user->name); ?>
</td>
</tr>
</table>
<?php endif; ?>
<?php if($get == 'all_members'): ?>
<table class="messenger-list-item" data-contact="<?php echo e($user->id); ?>">
<tr data-action="0">
<td style="position: relative">
<?php if($user->active_status): ?>
<span class="activeStatus"></span>
<?php endif; ?>
<?php if(!empty($user->avatar)): ?>
<div class="avatar av-m"
style="background-image: url('<?php echo e(asset('/storage/'.config('chatify.user_avatar.folder').'/'.$user->avatar)); ?>');">
</div>
<?php else: ?>
<div class="avatar av-m"
style="background-image: url('<?php echo e(asset('/storage/'.config('chatify.user_avatar.folder').'/avatar.png')); ?>');">
</div>
<?php endif; ?>
</td>
<td>
<p data-id="<?php echo e($type.'_'.$user->id); ?>">
<?php echo e(strlen($user->name) > 12 ? trim(substr($user->name,0,12)).'..' : $user->name); ?>
</td>
</tr>
</table>
<?php endif; ?>
<?php if($get == 'sharedPhoto'): ?>
<div class="shared-photo chat-image" style="background-image: url('<?php echo e($image); ?>')"></div>
<?php endif; ?>
<?php /**PATH /var/www/erp.theinteractive.co.in/resources/views/vendor/Chatify/layouts/listItem.blade.php ENDPATH**/ ?>