Releases: syamsoul/laravel-datatable-ssp
Releases · syamsoul/laravel-datatable-ssp
3.9.2
- should not cache indefinitely if $cache_timeout=0
3.9.1
- correct the info in response when user request all items (itemsPerPage === -1)
3.9.0
- can set
db_for_search
in columns option to specify what column to use when perform search
3.8.0
allow to cache response()->json()
how to use:
response()->json($cache_timeout, $extended_cache_name);
for example
response()->json(120);
will cache response()->json() output for 120 seconds
3.7.1
- return
items_per_page
data in getData method
- thus,
$ssp->response()->json()
also will return this data
3.7.0
- return
current_page
and total_pages
data in getData method
- thus,
$ssp->response()->json()
also will return these data
3.6.0
- can customize csv filename in response()->csv($filename, $is_include_datetime_in_filename)
- can set prefix for csv filename
3.5.0
- improved export to csv with large data
3.4.1
- ValidationException can be customizable
3.4.0
Fix column name alias handling (multiple AS expression issue)