Skip to content

Releases: Okipa/laravel-table

1.0.11

08 May 21:28
Compare
Choose a tag to compare
  • Added show to the list of available routes. - @Dranthos
  • Added Spanish translation. - @Dranthos
  • Wrapped sortable columns titles in order to avoid line jump between the sort icon and the column title (Issue #14).
  • Improved rows number selection and search bar template to fix wrong display the rows number is disabled for example (Issue #15).
  • Added possibility to show all the models contained in database with ->rowsNumber(false) chained on the Table instance (Issue #16).

1.0.10: Fixed a templating problem when disabling a line (one `td` html tag w…

21 Feb 18:03
Compare
Choose a tag to compare
  • Fixed a templating problem when disabling a line (one td html tag was missing).

1.0.9

21 Feb 17:48
Compare
Choose a tag to compare
  • Updated design in order to respect the bootstrap basics.
  • Updated config architecture to improve the logic.
  • The edit and destroy buttons are now hidden when a line is disabled.
  • Improved compatibility with postgres for the searching action, using ILIKE instead of LIKE operator for case-insensitive searching.

Fixes #1.

1.0.8

21 Feb 10:54
Compare
Choose a tag to compare
  • Updated the result displaying in one and only td html tag : the title is displayed on the left and the result html on the right.
  • Also fixed the result classes rendering location, which is now on the tr html tag and no more on the td html tags.

1.0.7

20 Feb 13:13
Compare
Choose a tag to compare
  • Breaking change : reverted last tag features => removed the capacity to add some result outputs with the ->result() method the Column objects.
  • Breaking change : reverted last tag features => removed the capacity to override default classes (config) for the results cells with the Table ->resultClasses() method.
  • Added the capacity to append some results objects to the table with the ->result() method with the following methods :
    • ->title() : Set the result row title.
    • ->html() : Display a HTML output for the result row. The closure let you manipulate the following attributes : $displayedList.
    • ->classes() : Override the default results classes and apply the given classes only on this result row. The default result classes are managed by the config('laravel-table.classes.results') value.
  • Added the capacity to manage a custom results template path in the config and with the ->$resultsComponentPath() method.

v1.0.6 features

19 Feb 12:19
9eb9961
Compare
Choose a tag to compare
  • Added the capacity to add some result outputs with the ->result() method the Column objects.
  • Added the capacity to override default classes (config) for the results cells with the Table ->resultClasses() method.
  • Improved accessibility by adding scope attributes to correct td html tags.

1.0.5: Updated `thead` and `tfoot` components in order to improve the respon…

18 Feb 14:41
5be8173
Compare
Choose a tag to compare
  • Updated thead and tfoot components in order to improve the responsive behavior.

1.0.4 (#5)

18 Feb 09:27
4b06d49
Compare
Choose a tag to compare

->appends() does now also add appended attributes to search canceling and sorting actions.

1.0.3: ->appends() method does now add appended key values to rows number se…

15 Feb 16:59
Compare
Choose a tag to compare
  • ->appends() method does now add appended key values to rows number selection form and to searching form as hidden fields.

1.0.2

15 Feb 15:37
Compare
Choose a tag to compare
  • Fixed searching queries process on regular table columns fields when aliased tables are declared in the the ->query() table method.