UNPKG

laravel-datatables-vite-bs

Version:

Laravel DataTables with jQuery, Bootstrap 3 and Vite

20 lines (19 loc) 486 B
/** * DataTables excel button. * * -- Laravel Integration -- * * Button::make('excel') * */ document.addEventListener('DOMContentLoaded', function () { $.fn.dataTable.ext.buttons.excel = { name: 'excel', className: 'buttons-excel btn-primary', titleAttr: 'Export as Excel', text: '<i class="fas fa-file-excel"></i>', action: function (e, dt, button, config) { window.location = _buildUrl(dt, 'excel'); } }; });