Viewing file: d63d37f5cb359581d8a992fe6be01dc34d4c612f.php (3.94 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title'); ?> Numbers <?php $__env->stopSection(); ?>
<?php $__env->startSection('extra-css'); ?> <link rel="stylesheet" href="<?php echo e(asset('plugins/datatables-bs4/css/dataTables.bootstrap4.min.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('plugins/datatables-responsive/css/responsive.bootstrap4.min.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 app('translator')->get('admin.numbers.list'); ?></h2> <div class="float-right"> <a class="btn btn-primary" href="<?php echo e(route('customer.numbers.create')); ?>"><?php echo app('translator')->get('admin.form.button.new'); ?></a> </div> </div> <!-- /.card-header --> <div class="card-body"> <table id="numbers" class="table table-striped table-bordered dt-responsive nowrap"> <thead> <tr> <th><?php echo app('translator')->get('admin.table.number'); ?></th> <th><?php echo app('translator')->get('admin.table.gateway'); ?></th> <th><?php echo app('translator')->get('Type'); ?></th> <th><?php echo app('translator')->get('customer.forward_to_dial_code'); ?></th> <th><?php echo app('translator')->get('customer.forward_to'); ?></th> <th><?php echo app('translator')->get('customer.webhook_method'); ?></th> <th><?php echo app('translator')->get('admin.form.status'); ?></th> <th><?php echo app('translator')->get('admin.table.created_at'); ?></th> <th><?php echo app('translator')->get('admin.table.action'); ?></th> </tr> </thead>
</table> </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('plugins/datatables/jquery.dataTables.min.js')); ?>"></script> <script src="<?php echo e(asset('plugins/datatables-bs4/js/dataTables.bootstrap4.min.js')); ?>"></script> <script src="<?php echo e(asset('plugins/datatables-responsive/js/dataTables.responsive.min.js')); ?>"></script> <script src="<?php echo e(asset('plugins/datatables-responsive/js/responsive.bootstrap4.min.js')); ?>"></script>
<script> "use strict"; $('#numbers').DataTable({ processing: true, serverSide: true, responsive:true, ajax:'<?php echo e(route('customer.get.all.numbers')); ?>', columns: [ { "data": "number" }, { "data": "from" }, { "data": "type" }, { "data": "forward_to_dial_code" }, { "data": "forward_to" }, { "data": "webhook_method" }, { "data": "status" }, { "data": "created_at" }, { "data": "action" }, ] }); </script> <?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.customer', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/pcolfjqt/picotext.picotech.app/resources/views/customer/numbers/index.blade.php ENDPATH**/ ?>
|