%PDF- %PDF-
Direktori : /home/silvzytp/ccd-ind-code/storage/framework/views/ |
Current File : //home/silvzytp/ccd-ind-code/storage/framework/views/829b8de36d0204fd00ed877fafd8cdd0f7d65697.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().'.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="agent"> <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-borderless table-style" id="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>Name</th> <th>Email</th> <th>Role</th> </thead> <tbody> </tbody> </table> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startPush('scripts'); ?> <script> table = $('#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: 25, //number of data show per page ajax: { url: "<?php echo e(route(routeName().'.compare.get-data')); ?>", type: "POST", dataType: "JSON", data: function(d) { d._token = _token; d.search_text = $("input#search-here").val(); }, }, columns: [ {data: 'bulk_check',orderable: false, searchable: false}, {data: 'name'}, {data: 'email'}, {data: 'role'}, ], 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='border form-control ml-1' id='search-here' placeholder='Enter name, email..'></div>" }, dom: "<'row'<'col-sm-12 col-md-6'l><'col-sm-12 col-md-6' <'float-right pr-15'B>>>" + "<'row'<'col-sm-12'tr>>" + "<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'<'float-right pr-15'p>>>", buttons: { buttons: [ { extend: 'pdf', filename: 'users_<?php echo e(date("d_m_d")); ?>', title: 'User List', orientation: "portrait", pageSize: "A4", className: 'pdfButton btn btn-sm btn-primary', exportOptions: { columns: '0,1,2,3,4,5,6,7,8,9,10,11' }, }, { extend: 'excel', filename: 'users_<?php echo e(date("d_m_d")); ?>', title: 'User List', className: 'excelButton btn btn-sm btn-primary', exportOptions: { columns: '0,1,2,3,4,5,6,7,8,9,10,11' }, }, { extend: 'csv', filename: 'users_<?php echo e(date("d_m_d")); ?>', title: 'User List', className: 'csvButton btn btn-sm btn-primary', exportOptions: { columns: '1,2,3,4,5,6,7,8,9,10,11,12' }, }, { extend: 'print', title: 'User List', orientation: "landscape", pageSize: "A4", className: 'printButton btn btn-sm btn-primary', exportOptions: { columns: '0,1,2,3,4,5,6,7,8,9,10,11' }, customize: function ( win ) { $(win.document.body) .addClass('bg-white') .css('font-size','10pt'); $(win.document.body).find('table') .addClass('compact bg-white') .css('font-size','inherit' ); } } ] } }); //******************* 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_manager_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_manager_compare(); }); //******************* Bulk action button show and hide ****************// function bulk_manager_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="agent"]').val(bulk_data_id); }else{ $('#bulk-box').addClass('d-none'); $('input[name="agent"]').val(''); $('#deletable-modal .modal-body input.operation-type').val(''); } } $(document).on("keyup keypress", "input#search-here", function(){ table.ajax.reload(); }); </script> <?php $__env->stopPush(); ?> <?php echo $__env->make('layouts.backend', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/silvzytp/ccd-ind-code/resources/views/backend/pages/compare/index.blade.php ENDPATH**/ ?>