Server : Apache System : Linux 145.162.205.92.host.secureserver.net 5.14.0-611.45.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Apr 1 05:56:53 EDT 2026 x86_64 User : tradze ( 1001) PHP Version : 8.1.34 Disable Function : NONE Directory : /home/tradze/www/storage/framework/views/ |
<div class="row">
<?php /* Apply custom-tooltip to parent div */ ?>
<div class="col-md-10 custom-tooltip info-icon-user-list" data-id="<?php echo e($o->id); ?>" style="position:relative;">
<?php /* Avatar */ ?>
<div class="pull-left">
<img src="<?php echo $o->avatar_url; ?>" height="30" class="img-circle" alt="">
</div>
<?php /* Name */ ?>
<div class="pull-left" style="margin-left:10px; vertical-align:middle; line-height:30px;">
<?php echo e($o->name); ?>
</div>
<?php /* Tooltip (email + phone) */ ?>
<?php if(!empty($o->email) || !empty($o->profile->mobile_number)): ?>
<div class="tooltip-content">
<?php if(!empty($o->created_at)): ?>
<div class="tooltip-text">
Registered on:<?php echo e($o->created_at); ?>
</div>
<?php endif; ?>
<div class="tooltip-title">Contact Details</div>
<?php if(!empty($o->email)): ?>
<div class="tooltip-text">
📧 <?php echo e($o->email); ?>
</div>
<?php endif; ?>
<?php if(!empty($o->profile->mobile_number)): ?>
<div class="tooltip-text">
📞 <?php echo e($o->profile->mobile_number); ?>
</div>
<?php endif; ?>
</div>
<?php endif; ?>
</div>
</div>