UNPKG

laravel-datatables-vite-bs

Version:

Laravel DataTables with jQuery, Bootstrap 3 and Vite

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