Viewing file: f85b6b194767f4d90a7210d766e63ae91bc446c2.php (7.24 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title','Trash | EmailBox'); ?>
<?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><?php echo e(trans('customer.trash')); ?></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.trash')); ?></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.trash')); ?></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 type="button" class="btn btn-default btn-sm checkbox-toggle"><i class="far fa-square"></i>
</button>
<div class="btn-group">
<button type="button" class="btn btn-default btn-sm"><i class="far fa-trash-alt"></i></button>
</div>
<!-- /.btn-group -->
<button type="button" class="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.email')); ?></th>
<th><?php echo e(trans('customer.type')); ?></th>
<th><?php echo e(trans('customer.message')); ?></th>
<th><?php echo e(trans('customer.schedule_at')); ?></th>
</td>
</thead>
<tbody>
<?php if($trashes->isNotempty()): ?>
<?php $__currentLoopData = $trashes; $__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"><?php echo e($message->formatted_email_to); ?></td>
<td class="mailbox-name"><?php echo e($message->type); ?></td>
<td class="mailbox-subject"><?php echo e($message->body); ?></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>
<!-- /.table -->
</div>
<!-- /.mail-box-messages -->
</div>
<!-- /.card-body -->
</div>
<!-- /.card -->
</div>
<!-- /.col -->
</div>
<!-- /.row -->
</section>
<!-- /.content -->
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.customer', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picotech/domains/picomail.picotech.app/public_html/resources/views/customer/emailbox/trash.blade.php ENDPATH**/ ?>
|