<?php $__env->startSection('content'); ?>
    <div class="container-fluid">
        <div class="page-titles">
            <ol class="breadcrumb">
                <li class="breadcrumb-item"><a href="javascript:void(0)">Reports</a></li>
                <li class="breadcrumb-item active"><a href="javascript:void(0)">SMS Log</a></li>
            </ol>
        </div>
        <div class="row">
            <div class="col-12">
                <div class="tab" id="listdata">          
                    <div class="table-responsive"> 
                        <table class="table table-sm table-responsive-lg mb-0" style="font-size:90%;" id="smslog_list">
                            <thead>
                                <tr>
                                    <th>#</th>
                                    <th>Mobile #</th>
                                    <th>SMS Content</th>
                                    <th>SMS Functionality</th>
                                    <th>Curl Output</th>
                                    <th>SMS Time</th>
                                </tr>
                            </thead>
                            <tfoot>
                                <tr>
                                  <th>&nbsp;</th>
                                  <th>&nbsp;</th>
                                  <th>&nbsp;</th>
                                  <th>&nbsp;</th>
                                  <th>&nbsp;</th>
                                  <th>&nbsp;</th>
                                </tr>
                            </tfoot>
                        </table>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <script type="text/javascript">
        $(document).ready(function () {
            var table= $('#smslog_list').DataTable({
                "processing": true,
                "serverSide": true,
                "ajax":{
                         "url": "<?php echo e(url('sms_log_list')); ?>",
                         "dataType": "json",
                         "type": "POST",
                         "data":{ _token: "<?php echo e(csrf_token()); ?>"}
                       },
                "columns": [
                    { "data": "DT_RowIndex" },
                    { "data": "mobile_number" },
                    { "data": "sms_content" },
                    { "data": "sms_functionality" },
                    { "data": "curl_output" },
                    { "data": "sms_time" },
                ], 
            });
            
        });
    </script>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('layout.default', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/html/ksstmprod/resources/views/Reports/sms_log_report.blade.php ENDPATH**/ ?>