Releases: rmunate/EasyDataTable
V 2.2.0
EasyDataTable:
A Fast and Efficient Way to Create BackEnd for Any DataTable in the Laravel PHP Framework
Are you tired of the hassle of handling DataTables in your Laravel projects? Say goodbye to the complexity! EasyDataTable is here to streamline your backend processes.
With EasyDataTable, you can harness the power of Laravel's Query Builder to swiftly and effortlessly create tables with all the features you need, as demanded by DataTables.
Documentation
Installation
When you wish to use this solution, you must ensure the following:
PHP: Version equal to or higher than 7.4
Laravel Framework: Version equal to or higher than 8.0
To install the dependency via Composer, run the following command:
composer require rmunate/easy-datatableLicense
This project is under the MIT License.
🌟 Support My Projects! 🚀
Make any contributions you see fit; the code is entirely yours. Together, we can do amazing things and improve the world of development. Your support is invaluable. ✨
If you have ideas, suggestions, or just want to collaborate, we are open to everything! Join our community and be part of our journey to success! 🌐👩💻👨💻
V 2.1.0
EasyDataTable:
A Fast and Efficient Way to Create BackEnd for Any DataTable in the Laravel PHP Framework
Are you tired of the hassle of handling DataTables in your Laravel projects? Say goodbye to the complexity! EasyDataTable is here to streamline your backend processes.
With EasyDataTable, you can harness the power of Laravel's Query Builder to swiftly and effortlessly create tables with all the features you need, as demanded by DataTables.
Documentation
Installation
When you wish to use this solution, you must ensure the following:
PHP: Version equal to or higher than 7.4
Laravel Framework: Version equal to or higher than 8.0
To install the dependency via Composer, run the following command:
composer require rmunate/easy-datatableLicense
This project is under the MIT License.
🌟 Support My Projects! 🚀
Make any contributions you see fit; the code is entirely yours. Together, we can do amazing things and improve the world of development. Your support is invaluable. ✨
If you have ideas, suggestions, or just want to collaborate, we are open to everything! Join our community and be part of our journey to success! 🌐👩💻👨💻
V 2.0.1
EasyDataTable:
A Fast and Efficient Way to Create BackEnd for Any DataTable in the Laravel PHP Framework
Are you tired of the hassle of handling DataTables in your Laravel projects? Say goodbye to the complexity! EasyDataTable is here to streamline your backend processes.
With EasyDataTable, you can harness the power of Laravel's Query Builder to swiftly and effortlessly create tables with all the features you need, as demanded by DataTables.
Documentation
Installation
When you wish to use this solution, you must ensure the following:
PHP: Version equal to or higher than 7.4
Laravel Framework: Version equal to or higher than 8.0
To install the dependency via Composer, run the following command:
composer require rmunate/easy-datatableLicense
This project is under the MIT License.
🌟 Support My Projects! 🚀
Make any contributions you see fit; the code is entirely yours. Together, we can do amazing things and improve the world of development. Your support is invaluable. ✨
If you have ideas, suggestions, or just want to collaborate, we are open to everything! Join our community and be part of our journey to success! 🌐👩💻👨💻
V 2.0.0
EasyDataTable:
A Fast and Efficient Way to Create BackEnd for Any DataTable in the Laravel PHP Framework
Are you tired of the hassle of handling DataTables in your Laravel projects? Say goodbye to the complexity! EasyDataTable is here to streamline your backend processes.
With EasyDataTable, you can harness the power of Laravel's Query Builder to swiftly and effortlessly create tables with all the features you need, as demanded by DataTables.
Documentation
Installation
When you wish to use this solution, you must ensure the following:
PHP: Version equal to or higher than 7.4
Laravel Framework: Version equal to or higher than 8.0
To install the dependency via Composer, run the following command:
composer require rmunate/easy-datatableLicense
This project is under the MIT License.
🌟 Support My Projects! 🚀
Make any contributions you see fit; the code is entirely yours. Together, we can do amazing things and improve the world of development. Your support is invaluable. ✨
If you have ideas, suggestions, or just want to collaborate, we are open to everything! Join our community and be part of our journey to success! 🌐👩💻👨💻
V 1.6.1
V 1.6.0
With Data Preparated
You can send data from a array or a collection to the front, for example:
Array:1 [
0 => array:41 [
"status" => "A"
"name" => "JOHN ALEJANDRO DIAZ PINILLA"
"born_day" => "1993-11-30"
"scheduler" => "Sheduler 235 Hour"
]
]
Collection {
0 => array:41 [
"status" => "A"
"name" => "CARLOS GIOVANNY RODRIGUEZ TRIVIÑO"
"born_day" => "1992-10-19"
"scheduler" => "Scheduler 235 Hour"
]
}For the send to the front, you must use the method fromData(), and put the array or the collection in the parameters.
$dataTable = new EasyDataTable();
/* The array or collection of data must be sent to the method. */
$dataTable->fromData($plantaActiva); /* Mandatory / Required */
$dataTable->map(function ($row) {
return [
"status" => $row->status,
"name" => $row->name,
"born_day" => $row->born_day,
"scheduler" => $row->scheduler,
];
});this method work like the clientSide method, in this way the javascript is the same than the clientSide.
V 1.5.0
The reading of the Request is adjusted to support the jl-datatable library (https://github.com/jhonijlm/jl-datatable?ref=vuejsexamples.com) in VUE.JS
V 1.4.1
V 1.4.0
EasyDataTable: A Fast and Efficient Way to Create BackEnd for Any DataTable in the Laravel PHP Framework (v1.x)
⚙️ This library is compatible with Laravel versions +8.0 and also provides support for the Metronic theme in its versions +8.0 ⚙️
Table of Contents
Introduction
EasyDataTable arises from the need to standardize the backend for different DataTables commonly used in Laravel projects. This package offers a convenient way to work with Laravel's built-in Query Builder to generate tables quickly and easily with all the capabilities required by DataTables.
It also provides support for DataTables in Metronic themes.

