| Server IP : 157.230.181.24 / Your IP : 216.73.217.11 Web Server : Apache/2.4.58 (Ubuntu) System : Linux conductive 6.8.0-117-generic #117-Ubuntu SMP PREEMPT_DYNAMIC Tue May 5 19:26:24 UTC 2026 x86_64 User : ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/vhosts/convo/storage/framework/views/ |
Upload File : |
<?php $__env->startSection('content'); ?>
<input type="hidden" value="<?php echo e($conversation->to->screenname); ?>" name="message-to" />
<input type="hidden" value="<?php echo e($conversation->from->screenname); ?>" name="message-from" />
<div class="row">
<div class="col-md-6 col-md-push-3">
<div class="window">
<div class="window-header">
<img src="<?php echo e(asset('assets/images/icon.png')); ?>" />
<?php echo e($conversation->to->screenname); ?> : <?php echo e($conversation->from->screenname); ?> - Instant Message
</div>
<div class="window-action">
<span>File</span>
<span>Edit</span>
<span>Insert</span>
<span>People</span>
</div>
<div class="window-body">
<div class="window-message-history">
<?php echo $conversation->content; ?>
</div>
<div class="outline">
<img src="<?php echo e(asset('assets/images/toolbar.png')); ?>" class="img-responsive" style="margin: 5px auto 0" />
</div>
<form action="#" class="window-form">
<textarea class="window-message"></textarea>
</form>
<div class="outline">
<img src="<?php echo e(asset('assets/images/bottom-msg.png')); ?>" class="img-responsive" style="margin: 5px 0 0 auto; padding-right: 15px" />
</div>
<img src="<?php echo e(asset('assets/images/warn-level.png')); ?>" class="img-responsive" style="margin: 8px 0 0 auto;" />
</div>
</div>
<div class="pagination text-center">
<?php if($previous): ?>
<a href="<?php echo e($previous); ?>" class="btn btn-default pull-left"><i class="fa fa-arrow-left"></i></a>
<?php endif; ?>
<a href="<?php echo e(action('MainController@conversations', [$from->id, $to->id])); ?>" class="btn btn-default"><i class="fa fa-list"></i></a>
<?php if($next): ?>
<a href="<?php echo e($next); ?>" class="btn btn-default pull-right"><i class="fa fa-arrow-right"></i></a>
<?php endif; ?>
</div>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('partials.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>