Viewing file: e07e75ad676318d218b5623d91fb1fe0.php (7.66 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title', trans('customer.draft_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.draft')); ?></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.draft')); ?></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(); ?> <!-- /.card -->
<!-- /.card --> </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.draft')); ?></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="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')); ?></th> <th><?php echo e(trans('customer.message')); ?></th> <th><?php echo e(trans('customer.schedule_at')); ?></th> <th><?php echo e(trans('customer.action')); ?></th> </td> </thead> <tbody> <?php $__currentLoopData = $drafts; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $message): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td> <div class="icheck-primary"> <input type="checkbox" value="" id="check1"> <label for="check1"></label> </div> </td> <td class="mailbox-name"><?php echo e($message->formatted_number_from); ?></td> <td class="mailbox-name"><?php echo e($message->formatted_number_to); ?></td> <td class="mailbox-subject"><?php echo e($message->body); ?></td> <td class="mailbox-subject"><?php echo e($message->schedule_datetime); ?></td> <td class="mailbox-name d-flex"> <a class="btn btn-primary btn-sm" href="<?php echo e(route('customer.smsbox.compose',['draft'=>$message->id])); ?>">Resume</a> <button data-message="<?php echo e(trans('customer.messages.delete_draft')); ?> <br/> <span class='text-sm text-muted'><?php echo e(trans('customer.messages.delete_draft_nb')); ?></span>" data-action="<?php echo e(route('customer.smsbox.draft.delete')); ?>" data-input='{"id":"<?php echo e($message->id); ?>"}' data-toggle="modal" data-target="#modal-confirm" id="deleteDraft" class="btn btn-danger btn-sm ml-2" type="button">Delete </button> </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/draft.blade.php ENDPATH**/ ?>
|