$('#employee_promotion-table').DataTable().clear().destroy(); var date = $('.date'); date.datepicker({ format: '{{ env('Date_Format_JS')}}', autoclose: true, todayHighlight: true }); let table_table = $('#employee_promotion-table').DataTable({ initComplete: function () { this.api().columns([0]).every(function () { var column = this; var select = $('') .appendTo($(column.footer()).empty()) .on('change', function () { var val = $.fn.dataTable.util.escapeRegex( $(this).val() ); column .search(val ? '^' + val + '$' : '', true, false) .draw(); }); column.data().unique().sort().each(function (d, j) { select.append(''); $('select').selectpicker('refresh'); }); }); }, responsive: true, fixedHeader: { header: true, footer: true }, processing: true, serverSide: true, ajax: { url: "{{ route('employee_promotion.index',$employee->id) }}", }, columns: [ { data: 'promotion_title', name: 'promotion_title', }, { data: 'promotion_date', name: 'promotion_date', }, { data: 'action', name: 'action', orderable: false } ], "order": [], 'language': { 'lengthMenu': '_MENU_ {{__('records per page')}}', "info": '{{trans("file.Showing")}} _START_ - _END_ (_TOTAL_)', "search": '{{trans("file.Search")}}', 'paginate': { 'previous': '{{trans("file.Previous")}}', 'next': '{{trans("file.Next")}}' } }, 'columnDefs': [ { "orderable": false, 'targets': [0, 2], }, ], 'select': {style: 'multi', selector: 'td:first-child'}, 'lengthMenu': [[10, 25, 50, -1], [10, 25, 50, "All"]], }); new $.fn.dataTable.FixedHeader(table_table); $(document).on('click', '.show_promotion', function () { let id = $(this).attr('id'); let target = '{{route('employee_promotion.details')}}/' + id; $.ajax({ url: target, dataType: "json", success: function (result) { $('#promotion_title_id').html(result.data.promotion_title); $('#promotion_description_id').html(result.data.description); $('#promotion_company_id_show').html(result.company_name); $('#promotion_employee_id_show').html(result.employee_name); $('#promotion_promotion_date_id').html(result.data.promotion_date); $('#employee_promotion_modal').modal('show'); $('.modal-title').text("{{__('Promotion Info')}}"); } }); });