<?php $__env->startSection('content_header'); ?>
    <?php echo notifyCss(); ?>
    <?php echo notifyJs(); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
    <div class="row">
        <div class="col-12">
            <div class="card card-info">
              <div class="card-header">
                  <h3 class="card-title"><b>Training Schedule List</b></h3>
              </div>
              <div id="listroledata" style="padding: 10px;">
                  <table class="table table-hover table-bordered table-striped datatable" id="dept_details" width="100%">
                      <thead>
                          <tr>
                            <th>Slno</th>
                            <th>Organisation</th>
                            <th>Roles</th>
                            <th>Training Title</th>
                            <th>Training Period</th>
                            <th>Actions</th>
                          </tr>
                      </thead>
                  </table>
              </div>
            </div>
        </div>
        
    </div>
    <script type="text/javascript">
        $(document).ready(function () 
        {
            $('#dept_details').DataTable({
                "buttons" : ['excelHtml5', 'excel', 'pdf', 'print', 'reset', 'reload'],
                "processing": true,
                "serverSide": true,
                "ajax":{

                         "url": "<?php echo e(url('get_training_participant_details')); ?>",
                         "dataType": "json",
                         "type": "POST",
                         "data":{ _token: "<?php echo e(csrf_token()); ?>"}
                       },
                "columns": [
                    { "data": "DT_RowIndex" },
                    { "data": "org_name" },
                    { "data": "roles" },
                    { "data": "title" },
                    { "data": "training_period"},
                    { "data": "action" }
                ], 
                
                "order": [[1, 'asc']]
            });      
        });
        
    </script>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('adminlte::page', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/html/kmportal/resources/views/Training/certificate.blade.php ENDPATH**/ ?>