%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/silvzytp/ccd-ind-code/storage/framework/views/
Upload File :
Create Path :
Current File : //home/silvzytp/ccd-ind-code/storage/framework/views/d30b5ff7378022cecc69912115d0da1c4f1c3f21.php

<?php $__env->startSection('title', $siteTitle); ?>
<?php $__env->startPush('styles'); ?>

<?php $__env->stopPush(); ?>

<?php $__env->startSection('content'); ?>

    <div class="row">
        <div class="col-12">

            <div id="bulk-box" class="d-none">
                <form method="GET" action="<?php echo e(route(routeName().'.file.compare.filter')); ?>">
                    <div class="d-flex align-items-center mb-3">
                        <?php if (isset($component)) { $__componentOriginalc254754b9d5db91d5165876f9d051922ca0066f4 = $component; } ?>
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'components.form.selectbox','data' => ['name' => 'compare','divClass' => 'mb-0']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
<?php $component->withName('form.selectbox'); ?>
<?php if ($component->shouldRender()): ?>
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(Illuminate\View\AnonymousComponent::class))->getConstructor()): ?>
<?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
<?php endif; ?>
<?php $component->withAttributes(['name' => 'compare','divClass' => 'mb-0']); ?>
                            <option value="">-- Select Compare --</option>
                            <option value="compare">Compare</option>
                         <?php echo $__env->renderComponent(); ?>
<?php endif; ?>
<?php if (isset($__componentOriginalc254754b9d5db91d5165876f9d051922ca0066f4)): ?>
<?php $component = $__componentOriginalc254754b9d5db91d5165876f9d051922ca0066f4; ?>
<?php unset($__componentOriginalc254754b9d5db91d5165876f9d051922ca0066f4); ?>
<?php endif; ?>
                        <input type="hidden" name="compare">
                        <div class="bulk-applys">
                            <button class="btn btn-md btn-primary rounded-0 ml-2 px-3" type="submit">Apply</button>
                        </div>
                    </div>
                </form>
            </div>

            <div class="card">
                <div class="card-body px-0">
                    <table class="table table-sm table-border table-striped table-hover table-style" id="file_compare-datatables">
                        <thead>
                            <th>
                                <div class="custom-control custom-checkbox">
                                    <input type="checkbox" class="custom-control-input" id="checked-all">
                                    <label class="custom-control-label" for="checked-all"></label>
                                </div>
                            </th>
                            <th>File Name</th>
                            <th>Total Numbers</th>
                        </thead>
                        <tbody>

                        </tbody>
                    </table>
                </div>
            </div>
        </div>
    </div>

<?php $__env->stopSection(); ?>

<?php $__env->startPush('scripts'); ?>
    <script>
        table = $('#file_compare-datatables').DataTable({
            processing: true,
            serverSide: true,
            order: [], //Initial no order
            bInfo: true, //TO show the total number of data
            bFilter: false, //For datatable default search box show/hide
            responsive: true,
            ordering: false,
            lengthMenu: [
                [5, 10, 15, 25, 50, 100, 1000, 10000, -1],
                [5, 10, 15, 25, 50, 100, 1000, 10000, "All"]
            ],
            pageLength: 10, //number of data show per page
            ajax: {
                url: "<?php echo e(route(routeName().'.file.compare.index')); ?>",
                type: "GET",
                dataType: "JSON",
                data: function(d) {
                    d._token = _token;
                    d.search_input = $('input#search_here').val();
                },
            },
            columns: [
                {data: 'bulk_check',orderable: false, searchable: false},
                {data: 'file_name'},
                {data: 'total_call'}
            ],
            language: {
                processing: '<img src="<?php echo e(asset("uploads/images/table-loading.svg")); ?>">',
                emptyTable: '<strong class="text-danger">No Data Found</strong>',
                infoEmpty: '',
                zeroRecords: '<strong class="text-danger">No Data Found</strong>',
                oPaginate: {
                    sPrevious: "Previous", // This is the link to the previous page
                    sNext: "Next", // This is the link to the next page
                },
                lengthMenu: "<div class='d-flex align-items-center'>_MENU_ <input type='text' class='form-control form-control-sm ml-2' id='search_here' placeholder='Search here'/></div>"
            }
        });
        
        $(document).on('keyup keypress','input#search_here',function(){
            table.ajax.reload();
        });


        //******************* Bulk main check box on click ****************//
        $(document).on('click', 'input#checked-all', function(){
            if(this.checked){
                $('input[name="checked_data"]').each(function(){
                    this.checked = true;
                });
            }else{
                $('input[name="checked_data"]').each(function(){
                    this.checked = false;
                });
            }

            bulk_file_compare();
        });

        //******************* Bulk main check box length check ****************//
        $(document).on('change', 'input[name="checked_data"]', function(){
            if($('input[name="checked_data"]').length == $('input[name="checked_data"]:checked').length){
            $('input#checked-all').prop('checked', true);
            }else{
                $('input#checked-all').prop('checked', false);
            }
            bulk_file_compare();
        });

        //******************* Bulk action button show and hide  ****************//
        function bulk_file_compare(){
            if($('input[name="checked_data"]:checked').length > 0){
                $('#bulk-box').removeClass('d-none');

                let bulk_data_id = [];
                $('input[name="checked_data"]:checked').each(function(){
                    bulk_data_id.push($(this).val())
                });

                $('input[name="compare"]').val(bulk_data_id);

            }else{
                $('#bulk-box').addClass('d-none');
                $('input[name="agent"]').val('');
                $('#deletable-modal .modal-body input.operation-type').val('');
            }
        }
    </script>
<?php $__env->stopPush(); ?>

<?php echo $__env->make('layouts.backend', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/silvzytp/calling_code/resources/views/backend/pages/compare/file-compare-form.blade.php ENDPATH**/ ?>

Zerion Mini Shell 1.0