Skip to content

v1.0.0

Compare
Choose a tag to compare
@timopruesse timopruesse released this 26 Jun 15:41
· 19 commits to master since this release

The first revision of the wiki has been released!
https://github.com/hamburgscleanest/data-tables/wiki

Added

  • Automatic Package Discovery for Laravel versions 5.5.x and later
  • Caching of the results
     DataTable::model(TestModel::class, $columns, new SimpleCache($minutes));
     // or
     $dataTable->cache(new SimpleCache(1440));
  • You can now change the pagination symbols
     $paginator->pageSymbols(['first' => 'first page', 'last' => 'last page', 'next' => 'next', 'previous' => 'prev']);