| Server IP : 46.62.235.243 / Your IP : 216.73.216.217 Web Server : Apache/2.4.58 (Ubuntu) System : Linux Linkabili3Dicembre 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/linkabili/storage/framework/views/ |
Upload File : |
<?php if($get == 'saved'): ?>
<table class="messenger-list-item m-li-divider" data-contact="<?php echo e(Auth::user()->id); ?>">
<tr data-action="0">
<td>
<div class="avatar av-m" style="background-color: #d9efff; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center;">
<span class="far fa-bookmark" style="font-size: 22px; color: #68a5ff;"></span>
</div>
</td>
<td>
<p data-id="<?php echo e(Auth::user()->id); ?>" data-type="user">Saved Messages <span>You</span></p>
<span>Save messages secretly</span>
</td>
</tr>
</table>
<?php endif; ?>
<?php if($get == 'users'): ?>
<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(DB::table('users')->where('id',$user->id)->first()->path_url): ?>
<div class="avatar av-m" style="background-image:url('/upload/<?php echo e(DB::table('users')->where('id',$user->id)->first()->path_url); ?>')"></div>
<?php else: ?>
<div class="avatar av-m" style="background-image: url('/theme/assets/img/doctor-detail/9.jpg')"></div>
<?php endif; ?>
</td>
<td>
<?php if($user->user_type!='care_giver'): ?>
<a href="/detail/<?php echo e($user->slug); ?>">
<?php endif; ?>
<p data-id="<?php echo e($user->id); ?>" data-type="user" <?php if($user->user_type!='care_giver'): ?>
style="text-decoration:underline"
<?php endif; ?>>
<?php echo e(strlen($user->name) > 12 ? trim(substr($user->name,0,12)).'..' : $user->name); ?>
<span><?php echo e($lastMessage->created_at->diffForHumans()); ?></span></p>
<?php if($user->user_type!='care_giver'): ?>
</a>
<?php endif; ?>
<span>
<?php echo $lastMessage->from_id == Auth::user()->id
? '<span class="lastMessageIndicator">Tu :</span>'
: ''; ?>
<?php if($lastMessage->attachment == null): ?>
<?php try{ ?>
<?php echo e(strlen(Crypt::decryptString($lastMessage->body)) > 30
? trim(substr(Crypt::decryptString($lastMessage->body), 0, 30)).'..'
: Crypt::decryptString($lastMessage->body)); ?>
<?php }catch(\Exception $e){ ?>
<?php } ?>
<?php else: ?>
<span class="fas fa-file"></span> Allegato
<?php endif; ?>
</span>
<?php echo $unseenCounter > 0 ? "<b>".$unseenCounter."</b>" : ''; ?>
</td>
</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>
<div class="avatar av-m"
style="background-image: url('<?php echo e($user->avatar); ?>');">
</div>
</td>
<td>
<p data-id="<?php echo e($user->id); ?>" data-type="user">
<?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/linkabili/resources/views/vendor/Chatify/layouts/listItem.blade.php ENDPATH**/ ?>