Viewing file: 29b4e5e7f9ef54a9f73797542ac97364.php (6.76 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title', trans('customer.trash_smsbox')); ?>
<?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.smsbox.inbox')); ?>"><?php echo e(trans('customer.smsbox')); ?></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.smsbox.compose')); ?>" class="btn btn-primary btn-block mb-3"><?php echo e(trans('customer.compose')); ?></a>
<?php echo $__env->make('customer.smsbox.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.number')); ?></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 $__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_number_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(); ?> </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/sms.picotech.app/public_html/resources/views/customer/smsbox/trash.blade.php ENDPATH**/ ?>
|