QuickAdminPanel uses for listing the data. By default, it accepts all entries from the database, and then JavaScript takes care of pagination, search, filtering, ordering etc.
And it is a problem for bigger amount of data, thousands of entries could slow down the page load significantly.
This AJAX Datatables module uses the data loading page by page, at the time that it's needed, via AJAX.
It's also called - Datatables script accept the URL of separate API script which actually loads the data.
Now, imagine if there were 5000 courses in the table. It would put a heavy load on the browser with JavaScript trying to paginate and filter the data inside of the datatables.
As you can see, a lot more logic now goes into Controller - it processes AJAX call to the API and parses the column.
In the Blade file the table itself is empty - there are no tr's or td's, it's all loaded via AJAX.
In other words, whole page is loaded really fast with empty table, and then after a while the data is being loaded.
How to install/use the module?
First, you go to your panel's Modules menu item, find the module in the list and click Install:
Then, you can switch AJAX function on-off for every CRUD - in Create/Edit menus, you will have a special checkbox for that: