Viewing file: 849923b0b1bf47f41125b674d51bc9d4.php (5.25 KB) -rwxrwxrwx Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title'); ?> <?php echo e(trans('admin.notices')); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('extra-css'); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?> <!-- Main content --> <section class="content"> <div class="row"> <div class="col-12"> <div class="card"> <div class="card-header"> <h2 class="card-title"><?php echo e(trans('admin.notices')); ?></h2> <div class="float-right"> </div> </div> <!-- /.card-header --> <div class="card-body"> <table id="sender_ids" class="table table-striped table-bordered dt-responsive nowrap"> <thead> <tr> <th><?php echo e(trans('admin.form.title')); ?></th> <th><?php echo e(trans('admin.table.description')); ?></th> <th><?php echo e(trans('admin.attached_data')); ?></th> </tr> </thead> <tbody> <?php if(getNotices() != 'null'): ?> <?php $__currentLoopData = getNotices(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $notice): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($notice->title); ?></td> <td> <?php echo isset($notice->description)?clean($notice->description):''; ?>
</td> <td class="text-center"> <?php if(isset($notice->attached_data)): ?> <strong class="justify-content-center"> <a href="<?php echo e(route('customer.download.notice.file', ['id'=>$notice->id])); ?>"><i class="fa fa-download downloadAttachedData mr-2 c-pointer" data-id="<?php echo e($notice->id); ?>"></i></a> </strong> <?php endif; ?> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php else: ?> <tr class="text-center"> <td colspan="3"><?php echo e(trans('No Data Available')); ?></td> </tr> <?php endif; ?> </tbody>
</table> </div> <!-- /.card-body --> </div> <!-- /.card --> </div> <!-- /.col --> </div> <!-- /.row --> </section> <!-- /.content --> <!-- Modal --> <div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalLabel"><?php echo e(trans('Set Price')); ?></h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <form action="<?php echo e(route('admin.sender.sender_id.setting')); ?>" method="post"> <?php echo csrf_field(); ?> <div class="modal-body"> <div class="form-group"> <label for=""><?php echo e(trans('admin.sender_id_price')); ?></label> <input type="number" name="sender_id_price" value="<?php echo e(isset($senderIdPrice->value) && isset(json_decode($senderIdPrice->value)->sender_id_price)?json_decode($senderIdPrice->value)->sender_id_price:0); ?>" class="form-control" placeholder="Enter price"> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> <button type="submit" class="btn btn-primary">Save</button> </div> </form> </div> </div> </div>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('extra-scripts'); ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.customer', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picotech/domains/test.sms.picotech.app/public_html/resources/views/customer/notices.blade.php ENDPATH**/ ?>
|