Laravel DataTables with jQuery, Bootstrap and Vite
npm install laravel-datatables-viteGet started with Laravel, DataTables, Bootstrap and Vite in a few minutes.
npm i laravel-datatables-vite --save-dev
Add the following to your resources/js/app.js file:
``js`
import 'laravel-datatables-vite';
Add the following to your resources/sass/app.scss file:
`css``
@import "bootstrap-icons/font/bootstrap-icons.min.css";
@import "datatables.net-bs5/css/dataTables.bootstrap5.min.css";
@import "datatables.net-buttons-bs5/css/buttons.bootstrap5.min.css";
@import "datatables.net-select-bs5/css/select.bootstrap5.min.css";
A quick starter guide is available at the official package docs.