Viewing file: 306e8df6e8cca3777fdaf7dcd5c79b5a2de60567.php (8.93 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title','Sent | EmailBox'); ?>
<?php $__env->startSection('extra-css'); ?>
<style>
.mailbox-fail {
color: red;
}
</style>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<!-- Content Header (Page header) -->
<section class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
<h1>Sent</h1>
</div>
<div class="col-sm-6">
<ol class="breadcrumb float-sm-right">
<li class="breadcrumb-item"><a
href="<?php echo e(route('customer.emailbox.inbox')); ?>"><?php echo e(trans('customer.emailbox')); ?></a></li>
<li class="breadcrumb-item active"><?php echo e(trans('customer.sent')); ?></li>
</ol>
</div>
</div>
</div><!-- /.container-fluid -->
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-md-3">
<a href="<?php echo e(route('customer.emailbox.compose')); ?>"
class="btn btn-primary btn-block mb-3"><?php echo e(trans('customer.compose')); ?></a>
<?php echo $__env->make('customer.emailbox.common', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<!-- /.col -->
<div class="col-md-9">
<div class="card card-primary card-outline">
<div class="card-header">
<h3 class="card-title"><?php echo e(trans('customer.sent')); ?></h3>
<div class="card-tools d-none">
<div class="input-group input-group-sm">
<input type="text" class="form-control" placeholder="<?php echo e(trans('customer.search_mail')); ?>">
<div class="input-group-append">
<div class="btn btn-primary">
<i class="fas fa-search"></i>
</div>
</div>
</div>
</div>
<!-- /.card-tools -->
</div>
<!-- /.card-header -->
<div class="card-body p-0">
<div class="mailbox-controls">
<!-- Check all button -->
<button data-checked="false" id="checkbox-toggle" type="button"
class="btn btn-default btn-sm checkbox-toggle"><i
class="far fa-square"></i>
</button>
<div class="btn-group">
<button data-message="<?php echo e(trans('customer.messages.move_trash')); ?>"
data-action="<?php echo e(route('customer.emailbox.sent.trash')); ?>"
data-input=''
data-toggle="modal" data-target="#modal-confirm"
id="move-trash"
type="button" class="btn btn-default btn-sm"><i class="far fa-trash-alt"></i>
</button>
</div>
<!-- /.btn-group -->
<button type="button" class="d-none btn btn-default btn-sm"><i class="fas fa-sync-alt"></i>
</button>
<div class="float-right d-none">
1-50/200
<div class="btn-group">
<button type="button" class="btn btn-default btn-sm"><i
class="fas fa-chevron-left"></i></button>
<button type="button" class="btn btn-default btn-sm"><i
class="fas fa-chevron-right"></i></button>
</div>
<!-- /.btn-group -->
</div>
<!-- /.float-right -->
</div>
<div class="table-responsive mailbox-messages">
<table class="table table-hover table-striped">
<thead>
<td>
<th><?php echo e(trans('customer.from')); ?></th>
<th><?php echo e(trans('customer.to_email')); ?></th>
<th><?php echo e(trans('customer.message')); ?></th>
<th><?php echo e(trans('customer.failed')); ?></th>
<th><?php echo e(trans('customer.schedule_at')); ?></th>
</td>
</thead>
<tbody>
<?php if($messages->isNotempty()): ?>
<?php $__currentLoopData = $messages; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $message): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<tr>
<td>
<div class="icheck-primary">
<input class="check-single" data-id="<?php echo e($message->id); ?>" type="checkbox"
id="check-<?php echo e($message->id); ?>">
<label for="check-<?php echo e($message->id); ?>"></label>
</div>
</td>
<td class="mailbox-name">
<div class='show-more'>
<?php echo e($message->formatted_email_from); ?>
</div>
</td>
<td class="mailbox-name">
<div class='show-more'>
<?php echo e($message->formatted_email_to); ?>
</div>
</td>
<td class="mailbox-subject">
<div class="show-more-message" style="min-width: 200px">
<?php echo e($message->body); ?>
</div>
</td>
<td class="mailbox-fail">
<div class='show-more'>
</div>
</td>
<td class="mailbox-subject"><?php echo e($message->schedule_datetime); ?></td>
</tr>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php else: ?>
<tr class="text-center">
<td colspan="6">No data available</td>
</tr>
<?php endif; ?>
</tbody>
</table>
<div class="float-right"> <?php echo e($messages->links("pagination::bootstrap-4")); ?> </div>
<!-- /.table -->
</div>
<!-- /.mail-box-messages -->
</div>
<!-- /.card-body -->
</div>
<!-- /.card -->
</div>
<!-- /.col -->
</div>
<!-- /.row -->
</section>
<!-- /.content -->
<?php $__env->stopSection(); ?>
<?php $__env->startSection('extra-scripts'); ?>
<script src="<?php echo e(asset('js/customer/sent.js')); ?>"> </script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.customer', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/pcolfjqt/mail.picotech.app/resources/views/customer/emailbox/sent.blade.php ENDPATH**/ ?>
|