Releases: Okipa/laravel-table
Releases · Okipa/laravel-table
5.3.1: V5: fix searching with Postgres (#130)
5.3.0: Add Laravel 10 support (#120)
- Added PHP 8.2 support and locked PHP versions to 8.1 and 8.2
- Dropped Laravel 8 support
- Added Laravel 10 support
5.2.2 (#116)
- Fixed filter reset button missing margin-top class for Bootstrap 4 & 5 templates
5.2.1 (#112)
- Added the ability to redefine the entire table positioning when reordering instead of just reversing some possibly incorrect positions
5.2.0 (#111)
- Added a new built-in
RedirectRowAction
, that is now used to render the pre-configuredShowRowAction
- Added an optional second argument
bool $openInNewWindow = false
to theShowRowAction
- Added a new pre-configured
AddHeadAction
, that is using the built-inRedirectHeadAction
- Added a new
Add
translation for it that you'll have to add to your own translations - Added a new
config('laravel-table.icon.add')
config for it with the<i class="fa-solid fa-circle-plus fa-fw"></i>
default value that you'll also have to add to your published configuration file
- Added a new
5.1.2
- Improved CI by @szepeviktor in #110
- Improved PHPStan config by @szepeviktor (first contribution) in #109
5.1.1: Fixed reordering feature (#108)
- Fixed reordering feature that was not compatible with packages like spatie/eloquent-sortable (which authorize several model entries to have the same position when the sorting does group models from a query => example)
5.1.0 (#107)
- Added ability to chain a
->when(bool $condition)
method to an instantiated head action, in order to enable it conditionally - Added a new built-in
RedirectHeadAction
, that is now used to render the pre-configuredCreateHeadAction
- Added an optional second argument
bool $openInNewWindow = false
to theCreateHeadAction
- Added a new JavaScript snippet to handle head action link opening in tab: you'll have to add it if you want to benefit from this new ability
5.0.2 (#104)
- Fixed wrong
form-select
class uses for Bootstrap 4 template selects: replaced them bycustom-select
- Fixed Column action still displays original column value with ->when(false) : #103