Skip to main content

August 2025

v3.10.0-beta.18
August 24, 2025

What’s Changed

  • Bump aglipanci/laravel-pint-action from 2.5 to 2.6 Bumps aglipanci/laravel-pint-action from 2.5 to 2.6.
  • Bump actions/checkout from 4 to 5 Bumps actions/checkout from 4 to 5.
  • Fix dont show new columns in user views This PR fixes an issue where adding a new column to the table schema would then cause the column to appear in User Views. Additionally, the toggling off the column in the column dropdown would then take two clicks. Now, new columns will be toggled off if they are not in the user view. Users can always use the “Replace view” functionality if they want to show/reorder new columns.
v3.9.0-beta.19
August 24, 2025

What’s Changed

  • Bump aglipanci/laravel-pint-action from 2.5 to 2.6 Bumps aglipanci/laravel-pint-action from 2.5 to 2.6.
  • Bump actions/checkout from 4 to 5 Bumps actions/checkout from 4 to 5.
  • Fix dont show new columns in user views This PR fixes an issue where adding a new column to the table schema would then cause the column to appear in User Views. Additionally, the toggling off the column in the column dropdown would then take two clicks. Now, new columns will be toggled off if they are not in the user view. Users can always use the “Replace view” functionality if they want to show/reorder new columns.
v3.8.12
August 24, 2025

What’s Changed

  • Bump aglipanci/laravel-pint-action from 2.5 to 2.6 Bumps aglipanci/laravel-pint-action from 2.5 to 2.6.
  • Bump actions/checkout from 4 to 5 Bumps actions/checkout from 4 to 5.
  • Fix dont show new columns in user views This PR fixes an issue where adding a new column to the table schema would then cause the column to appear in User Views. Additionally, the toggling off the column in the column dropdown would then take two clicks. Now, new columns will be toggled off if they are not in the user view. Users can always use the “Replace view” functionality if they want to show/reorder new columns.

July 2025

v3.10.0-beta.17
July 30, 2025

What’s Changed

  • Fix-preserveFilters-when-going-from-userView-to-PresetView Currently when using preserveFilters() on a PresetView, if a UserView with filters is selected and then the PresetView is selected, the PresetView is not highlighted. This works when you go from PresetView -> PresetView, but does not when going from UserView -> PresetView. This PR fixes this issue.
v3.9.0-beta.18
July 30, 2025

What’s Changed

  • Fix-preserveFilters-when-going-from-userView-to-PresetView Currently when using preserveFilters() on a PresetView, if a UserView with filters is selected and then the PresetView is selected, the PresetView is not highlighted. This works when you go from PresetView -> PresetView, but does not when going from UserView -> PresetView. This PR fixes this issue.
v3.8.11
July 30, 2025

What’s Changed

  • Fix-preserveFilters-when-going-from-userView-to-PresetView Currently when using preserveFilters() on a PresetView, if a UserView with filters is selected and then the PresetView is selected, the PresetView is not highlighted. This works when you go from PresetView -> PresetView, but does not when going from UserView -> PresetView. This PR fixes this issue.
v3.10.0-beta.16
July 24, 2025

What’s Changed

  • Fix Model::shouldBeStrict error Fixes an issue where adding Model::shouldBeStrict() and disabling managedDefaultViews would cause a The attribute [is_current_default] either does not exist or was not retrieved for model [Archilex\AdvancedTables\Models\UserView] as is_current_default is a subquery column only created when managedDefaultViews is enabled. This fix looks for for the attribute directly in the attributes array. In my testing this was faster than the alternative of looking at the config setting and then if managedDefaultViews is enabled to then look at the attribute.
v3.9.0-beta.17
July 24, 2025

What’s Changed

  • Fix Model::shouldBeStrict error Fixes an issue where adding Model::shouldBeStrict() and disabling managedDefaultViews would cause a The attribute [is_current_default] either does not exist or was not retrieved for model [Archilex\AdvancedTables\Models\UserView] as is_current_default is a subquery column only created when managedDefaultViews is enabled. This fix looks for for the attribute directly in the attributes array. In my testing this was faster than the alternative of looking at the config setting and then if managedDefaultViews is enabled to then look at the attribute.
v3.10.0-beta.15
July 8, 2025

What’s Changed

  • Fix toggleOnAllColumns with relationships Fixes an issue when toggling on all columns (Enable All), when there are columns that use dotted relationships
v3.9.0-beta.16
July 8, 2025

What’s Changed

  • Fix toggleOnAllColumns with relationships Fixes an issue when toggling on all columns (Enable All), when there are columns that use dotted relationships
v3.8.10
July 8, 2025

What’s Changed

  • Fix toggleOnAllColumns with relationships Fixes an issue when toggling on all columns (Enable All), when there are columns that use dotted relationships
v3.10.0-beta.14
July 8, 2025

What’s Changed

  • Try fix deprecation error to Str::beforeLast() I originally reported it on https://github.com/filamentphp/filament/issues/16852 If you look at Laravel’s Str class, only the beforeLast() method uses mb_strrpos() I didn’t manage to trace filament removeTableFilter() method deep enough to find a Str::beforeLast() But I manage to find it in this package removeTableFilter() method so i like to make this PR to this package 1st to see if it fix the issue for me as Sentry gives me a lot of alerts. I see that you allow fieldtobenulltoosothereisachancefield to be null too so there is a chance field is null and cause those deprecation errors
  • Bump stefanzweifel/git-auto-commit-action from 5 to 6 Bumps stefanzweifel/git-auto-commit-action from 5 to 6.

New Contributors

  • @ziming made their first contribution
v3.9.0-beta.15
July 8, 2025

What’s Changed

  • Try fix deprecation error to Str::beforeLast() I originally reported it on https://github.com/filamentphp/filament/issues/16852 If you look at Laravel’s Str class, only the beforeLast() method uses mb_strrpos() I didn’t manage to trace filament removeTableFilter() method deep enough to find a Str::beforeLast() But I manage to find it in this package removeTableFilter() method so i like to make this PR to this package 1st to see if it fix the issue for me as Sentry gives me a lot of alerts. I see that you allow fieldtobenulltoosothereisachancefield to be null too so there is a chance field is null and cause those deprecation errors
  • Bump stefanzweifel/git-auto-commit-action from 5 to 6 Bumps stefanzweifel/git-auto-commit-action from 5 to 6.

New Contributors

  • @ziming made their first contribution
v3.8.9
July 8, 2025

What’s Changed

  • Try fix deprecation error to Str::beforeLast() I originally reported it on https://github.com/filamentphp/filament/issues/16852 If you look at Laravel’s Str class, only the beforeLast() method uses mb_strrpos() I didn’t manage to trace filament removeTableFilter() method deep enough to find a Str::beforeLast() But I manage to find it in this package removeTableFilter() method so i like to make this PR to this package 1st to see if it fix the issue for me as Sentry gives me a lot of alerts. I see that you allow fieldtobenulltoosothereisachancefield to be null too so there is a chance field is null and cause those deprecation errors
  • Bump stefanzweifel/git-auto-commit-action from 5 to 6 Bumps stefanzweifel/git-auto-commit-action from 5 to 6.

New Contributors

  • @ziming made their first contribution

June 2025

v3.10.0-beta.13
June 15, 2025

What’s Changed

  • Fix date filter This PR fixes the absolute date filter (is date, before date, after date) that broke with the recent addition to is_empty and is not empty
  • Fix more than 6 or groups If a user was using more than 6 or groups in AdvancedFilters it would throw an error as there were only 6 colors to select from. This PR will now cycle through the indicator colors allow infinite or groups
  • Improve support for filament minimal theme Adds support for Filament’s Minimal Theme. If you are using Filament’s Minimal Theme and have been adding css to your theme, you should be able to remove that now and just use ->minimalTheme() and the Advanced Tables’ plugin object
v3.9.0-beta.14
June 15, 2025

What’s Changed

  • Fix date filter This PR fixes the absolute date filter (is date, before date, after date) that broke with the recent addition to is_empty and is not empty
  • Fix more than 6 or groups If a user was using more than 6 or groups in AdvancedFilters it would throw an error as there were only 6 colors to select from. This PR will now cycle through the indicator colors allow infinite or groups
  • Improve support for filament minimal theme Adds support for Filament’s Minimal Theme. If you are using Filament’s Minimal Theme and have been adding css to your theme, you should be able to remove that now and just use ->minimalTheme() and the Advanced Tables’ plugin object
v3.8.8
June 15, 2025

What’s Changed

  • Fix date filter This PR fixes the absolute date filter (is date, before date, after date) that broke with the recent addition to is_empty and is not empty
  • Fix more than 6 or groups If a user was using more than 6 or groups in AdvancedFilters it would throw an error as there were only 6 colors to select from. This PR will now cycle through the indicator colors allow infinite or groups
  • Improve support for filament minimal theme Adds support for Filament’s Minimal Theme. If you are using Filament’s Minimal Theme and have been adding css to your theme, you should be able to remove that now and just use ->minimalTheme() and the Advanced Tables’ plugin object
v3.10.0-beta.12
June 5, 2025

What’s Changed

  • Implement current user view This PR brings over the currentUserView implementation which is part of beta10. the currentUserView allows the user/preset view to keep an indicator after changing the sorting/filtering/etc, helping to better indicate that the view is still active.
  • Fix incorrect method naming Fixes an incorrect method naming that occurred when bringing currentUserView from beta 10 to beta 9
  • Fix preset views that modifed the query This PR fixes a bug where a preset view that modifies the table query wasn’t being applied after a table filter/sort/etc. was updated.
  • Bump dependabot/fetch-metadata from 2.3.0 to 2.4.0 Bumps dependabot/fetch-metadata from 2.3.0 to 2.4.0.
  • Add empty filter to date operator This PR adds an “empty” and “is not empty” date filter to the date filter
  • Fix is empty date filter Bug fixes
v3.9.0-beta.13
June 4, 2025

What’s Changed

  • Fix is empty date filter Bug fixes
v3.8.7
June 4, 2025

What’s Changed

  • Fix is empty date filter Bug fixes
v3.9.0-beta.12
June 4, 2025

What’s Changed

  • Bump dependabot/fetch-metadata from 2.3.0 to 2.4.0 Bumps dependabot/fetch-metadata from 2.3.0 to 2.4.0.
  • Add empty filter to date operator This PR adds an “empty” and “is not empty” date filter to the date filter
v3.9.0-beta.11
June 4, 2025

What’s Changed

  • Add empty filter to date operator This PR adds an “empty” and “is not empty” date filter to the date filter
  • Bump dependabot/fetch-metadata from 2.3.0 to 2.4.0 Bumps dependabot/fetch-metadata from 2.3.0 to 2.4.0.
v3.8.6
June 4, 2025

What’s Changed

  • Bump dependabot/fetch-metadata from 2.3.0 to 2.4.0 Bumps dependabot/fetch-metadata from 2.3.0 to 2.4.0.
  • Add empty filter to date operator This PR adds an “empty” and “is not empty” date filter to the date filter
v3.10.0-beta.11
June 3, 2025

What’s Changed

  • Fix preset views that modifed the query This PR fixes a bug where a preset view that modifies the table query wasn’t being applied after a table filter/sort/etc. was updated.
v3.9.0-beta.10
June 3, 2025

What’s Changed

  • Fix preset views that modifed the query This PR fixes a bug where a preset view that modifies the table query wasn’t being applied after a table filter/sort/etc. was updated.

May 2025

v3.10.0-beta.10
May 13, 2025

What’s Changed

  • Update HasViewActions.php Fixes a missing $column variable
v3.9.0-beta.9
May 13, 2025

What’s Changed

  • Fix incorrect method naming Fixes an incorrect method naming that occurred when bringing currentUserView from beta 10 to beta 9
v3.9.0-beta.8
May 10, 2025

What’s Changed

  • Implement current user view This PR brings over the currentUserView implementation which is part of beta10. the currentUserView allows the user/preset view to keep an indicator after changing the sorting/filtering/etc, helping to better indicate that the view is still active.

April 2025

v3.10.0-beta.9
April 30, 2025

What’s Changed

  • Improve support for multiple plugin instances If you are using multiple instances of the plugin on the same page (ie, multiple table widgets, or stacked relation managers), there can be conflicts with the userView/presetView/defaultViews when reloading the page. The problem is that the userView/presetView are stored in properties, which are then set in the query string through Livewire’s #[Url] attribute. Normally this is fine since there is usually only one instance of the plugin on a page at one time. However, when there are multiple instances, as you switch between different userViews/presetViews, the last view is what is stored in the url. Then when you reload the page, since those values are present in the url, livewire sets the properties and then plugin tries to load those views in each instance which overrides whatever was stored in the session. This PR introduces a hasMultipleInstances() method that you can set to false when the plugin is being used multiple times on the same page. This will basically set the userView and presetView properties to null before loading the page which will force it to fall back to using the view stored in the session, which is unique per instance. To use it, just add: php public function hasMultipleInstances(): bool { return false; } to all the List/Manage/Widget classes that are being loaded on the same page.
  • Improve support for multiple trait instances Add support for #376 for beta 3.10
v3.9.0-beta.7
April 30, 2025

What’s Changed

  • Improve support for multiple plugin instances If you are using multiple instances of the plugin on the same page (ie, multiple table widgets, or stacked relation managers), there can be conflicts with the userView/presetView/defaultViews when reloading the page. The problem is that the userView/presetView are stored in properties, which are then set in the query string through Livewire’s #[Url] attribute. Normally this is fine since there is usually only one instance of the plugin on a page at one time. However, when there are multiple instances, as you switch between different userViews/presetViews, the last view is what is stored in the url. Then when you reload the page, since those values are present in the url, livewire sets the properties and then plugin tries to load those views in each instance which overrides whatever was stored in the session. This PR introduces a hasMultipleInstances() method that you can set to false when the plugin is being used multiple times on the same page. This will basically set the userView and presetView properties to null before loading the page which will force it to fall back to using the view stored in the session, which is unique per instance. To use it, just add: php public function hasMultipleInstances(): bool { return false; } to all the List/Manage/Widget classes that are being loaded on the same page.

March 2025

v3.10.0-beta.8
March 26, 2025

What’s Changed

  • Fix hiding view manager and quick save when in favorites bar This PR fixes hiding the view manager and quick save per resource/page when they are in the favorites bar. Previously showing/hiding per resource/page only worked when it was they were in the table.
v3.9.0-beta.6
March 26, 2025

What’s Changed

  • Fix hiding view manager and quick save when in favorites bar This PR fixes hiding the view manager and quick save per resource/page when they are in the favorites bar. Previously showing/hiding per resource/page only worked when it was they were in the table.
v3.8.5
March 26, 2025

What’s Changed

  • Fix hiding view manager and quick save when in favorites bar This PR fixes hiding the view manager and quick save per resource/page when they are in the favorites bar. Previously showing/hiding per resource/page only worked when it was they were in the table.
v3.8.4
March 25, 2025

What’s Changed

  • Replace hardcoded tenant ids
v3.9.0-beta.5
March 25, 2025

What’s Changed

  • Replace hardcoded tenant ids
v3.10.0-beta.7
March 25, 2025

What’s Changed

  • Replace hardcoded tenant ids
v3.10.0-beta.6
March 18, 2025

What’s Changed

  • Update README.md
  • Update default view translations
v3.9.0-beta.4
March 18, 2025

What’s Changed

  • Update default view translations
v3.8.3
March 18, 2025

What’s Changed

  • Update README.md
v3.10.0-beta.5
March 17, 2025

What’s Changed

  • Improve resetting view from view manager
v3.10.0-beta.4
March 17, 2025

What’s Changed

  • Persist current view when persistActiveView is enabled
v3.10.0-beta.3
March 16, 2025

What’s Changed

  • Feature advanced indicators
  • initial fixes
  • Advanced indicators beta readme
  • Update README.md
  • Improvements Better error messaging, refactor class names, fix bug when resetting form from filter form
  • Update indicators.blade.php This PR fixes an issue when you have Advanced Indicators enabled globally, but are not using the AdvancedTables trait on a specific resource or page.
  • Feature Multi-Sort This PR introduces Multi-Sort to Advanced Tables. Docs here: https://filamentphp.com/plugins/kenneth-sese-advanced-tables#multi-sort-beta
  • Update translations
  • Fix multi sort column labels Fixes the column labels for the multi-sort dropdown and picker
  • Fix advanced indicators using filter form section Adds support for filter forms that use Sections
  • Update updated filament method Filament v3.2.133 updated the getFilters() method. This PR updates this method to keep it compatible and makes 3.2.133 the minimum version going forward.
  • Update composer.json
  • Improve compatibility between default view and beta 10
v3.9.0-beta.3
March 14, 2025

What’s Changed

  • Allow customizable default icon
v3.9.0-beta.2
March 13, 2025

What’s Changed

  • Default View tweaks
v3.9.0-beta.1
March 10, 2025

What’s Changed

  • Feature user defined default views

February 2025

v3.8.2
February 27, 2025

What’s Changed

  • Fix type enable skeleton loading
v3.8.1
February 27, 2025

What’s Changed

  • Enable skeleton loading on pagination
v3.10.0-beta.2
February 25, 2025

What’s Changed

  • Update composer.json
v3.8.0
February 25, 2025

What’s Changed

  • Laravel 12
  • Update readme for laravel 12
v3.10.0-beta.1
February 25, 2025

What’s Changed

  • Better support for Record Finder Pro plugin This PR adds better support for Ralph’s Record Finder Pro plugin using the github theme.
  • Fix calling methods directly In some places I was calling action methods directly instead of as a property as recommended. This PR updates those actions
  • Prevent additional requests when using deferred filters with advanced filters When using Filament’s ->deferredFilters() method along with AdvancedFilters, a request was being sent to the server each time an input was changed. This was specifically noticable with multi selects. This PR prevents those additional requests being sent over the wire until Apply is clicked.
  • Move loading overlay from booted to registered Having the loading overlay in the booted method appears to cause issues when calling filament(). This PR moves this logic to the registered method to make sure the configuration is applied after the application is fully booted.
  • Allow view manager and quick save to be configured per page This PR allows the View Manager and Quick Save to be configured per page. If you would like to disable either or both on a certain page/widget/relation manager by overriding the viewManagerIsEnabled() or quickSaveIsEnabled() methods. See the docs for additional information.
  • Bump dependabot/fetch-metadata from 2.2.0 to 2.3.0 Bumps dependabot/fetch-metadata from 2.2.0 to 2.3.0.
  • Bump aglipanci/laravel-pint-action from 2.4 to 2.5 Bumps aglipanci/laravel-pint-action from 2.4 to 2.5.
  • Fix advanced filters when using nested relationships with options When using AdvancedFilters with a SelectFilter or TextFilter and a dotted relationship along with the ->options() method, the query would default to the id column instead of the specified key. This PR fixes this issue. Closes #317
v3.7.43
February 24, 2025

What’s Changed

  • Clear table search when enabling When clicking “default” the table search was not being cleared. This PR fixes that behavior.
v3.7.42
February 21, 2025

What’s Changed

  • Bump min filament version
v3.8.0-beta.16
February 21, 2025

What’s Changed

  • Better support for Record Finder Pro plugin This PR adds better support for Ralph’s Record Finder Pro plugin using the github theme.
  • Fix calling methods directly In some places I was calling action methods directly instead of as a property as recommended. This PR updates those actions
  • Prevent additional requests when using deferred filters with advanced filters When using Filament’s ->deferredFilters() method along with AdvancedFilters, a request was being sent to the server each time an input was changed. This was specifically noticable with multi selects. This PR prevents those additional requests being sent over the wire until Apply is clicked.
  • Move loading overlay from booted to registered Having the loading overlay in the booted method appears to cause issues when calling filament(). This PR moves this logic to the registered method to make sure the configuration is applied after the application is fully booted.
  • Allow view manager and quick save to be configured per page This PR allows the View Manager and Quick Save to be configured per page. If you would like to disable either or both on a certain page/widget/relation manager by overriding the viewManagerIsEnabled() or quickSaveIsEnabled() methods. See the docs for additional information.
  • Bump dependabot/fetch-metadata from 2.2.0 to 2.3.0 Bumps dependabot/fetch-metadata from 2.2.0 to 2.3.0.
  • Bump aglipanci/laravel-pint-action from 2.4 to 2.5 Bumps aglipanci/laravel-pint-action from 2.4 to 2.5.
  • Fix advanced filters when using nested relationships with options When using AdvancedFilters with a SelectFilter or TextFilter and a dotted relationship along with the ->options() method, the query would default to the id column instead of the specified key. This PR fixes this issue. Closes #317
v3.7.41
February 21, 2025

What’s Changed

  • Fix calling methods directly In some places I was calling action methods directly instead of as a property as recommended. This PR updates those actions
  • Prevent additional requests when using deferred filters with advanced filters When using Filament’s ->deferredFilters() method along with AdvancedFilters, a request was being sent to the server each time an input was changed. This was specifically noticable with multi selects. This PR prevents those additional requests being sent over the wire until Apply is clicked.
  • Move loading overlay from booted to registered Having the loading overlay in the booted method appears to cause issues when calling filament(). This PR moves this logic to the registered method to make sure the configuration is applied after the application is fully booted.
  • Allow view manager and quick save to be configured per page This PR allows the View Manager and Quick Save to be configured per page. If you would like to disable either or both on a certain page/widget/relation manager by overriding the viewManagerIsEnabled() or quickSaveIsEnabled() methods. See the docs for additional information.
  • Bump dependabot/fetch-metadata from 2.2.0 to 2.3.0 Bumps dependabot/fetch-metadata from 2.2.0 to 2.3.0.
  • Bump aglipanci/laravel-pint-action from 2.4 to 2.5 Bumps aglipanci/laravel-pint-action from 2.4 to 2.5.
  • Fix advanced filters when using nested relationships with options When using AdvancedFilters with a SelectFilter or TextFilter and a dotted relationship along with the ->options() method, the query would default to the id column instead of the specified key. This PR fixes this issue. Closes #317

January 2025

v3.7.40
January 25, 2025

What’s Changed

  • Better support for Record Finder Pro plugin This PR adds better support for Ralph’s Record Finder Pro plugin using the github theme.
v3.8.0-beta.15
January 22, 2025

What’s Changed

  • Improve skeleton loader css class target Previously, the skeleton loader targeted the fi-ta-text class, but with custom columns with custom blade files, this class might not be there. This switches to targeting the fi-ta-col-wrp class.
v3.7.39
January 22, 2025

What’s Changed

  • Improve skeleton loader css class target Previously, the skeleton loader targeted the fi-ta-text class, but with custom columns with custom blade files, this class might not be there. This switches to targeting the fi-ta-col-wrp class.
v3.8.0-beta.14
January 22, 2025

What’s Changed

  • Improve loading targets for skeleton overlay This PR better targets table events so that forms in modals and slideovers don’t trigger the skeleton loader.
v3.7.38
January 22, 2025

What’s Changed

  • Improve loading targets for skeleton overlay This PR better targets table events so that forms in modals and slideovers don’t trigger the skeleton loader.
v3.8.0-beta.13
January 20, 2025

What’s Changed

  • Fix toggle on all columns with nested relationships This PR fixes a bug with the recently introduced Enable All in reorderable columns that would set nested arrays to true. This PR maintains the nested arrays and recursively sets the value to true.
v3.7.37
January 20, 2025

What’s Changed

  • Fix toggle on all columns with nested relationships This PR fixes a bug with the recently introduced Enable All in reorderable columns that would set nested arrays to true. This PR maintains the nested arrays and recursively sets the value to true.
v3.8.0-beta.12
January 19, 2025

What’s Changed

  • Improvement toggle on all columns This PR adds the ability to toggle on all the hidden columns at once. You may display the link as a button using the ->reorderableColumnsDisplayEnableAllAsIcon() method and you can configure the icon using the ->enableAllIcon() method
  • Feature table loading overlay This PR introduces a new table skeleton overlay to give your users more feedback when their tables are loading. This can be enabled by adding the ->tableLoadingOverlay() method to the plugin object.
v3.7.36
January 19, 2025

What’s Changed

  • Hungarian translations
  • Improvement toggle on all columns This PR adds the ability to toggle on all the hidden columns at once. You may display the link as a button using the ->reorderableColumnsDisplayEnableAllAsIcon() method and you can configure the icon using the ->enableAllIcon() method
  • Feature table loading overlay This PR introduces a new table skeleton overlay to give your users more feedback when their tables are loading. This can be enabled by adding the ->tableLoadingOverlay() method to the plugin object.

New Contributors

  • @borex made their first contribution
v3.8.0-beta.11
January 15, 2025

What’s Changed

  • Update updated filament method Filament v3.2.133 updated the getFilters() method. This PR updates this method to keep it compatible and makes 3.2.133 the minimum version going forward.

December 2024

v3.8.0-beta.10
December 20, 2024

What’s Changed

  • Fix advanced indicators using filter form section Adds support for filter forms that use Sections
v3.8.0-beta.9
December 15, 2024

What’s Changed

  • Fix multi sort column labels Fixes the column labels for the multi-sort dropdown and picker
v3.8.0-beta.8
December 15, 2024

What’s Changed

  • Update translations
v3.8.0-beta.7
December 15, 2024
Update translations
v3.8.0-beta.6
December 15, 2024

What’s Changed

  • Fix for persisting column searches This PR fixes an issue where the table search or column search wouldn’t be persisted when a UserView was activated.
  • Improve handling of updated columns This PR fixes an Undefined array key error that would occur when a user would save a view based on a previously saved view that had column sorting, but that sorted column had later been renamed by the developer.
  • Show loading indicator when toggling reorderable columns Show loading indicator when toggling reorderable columns
  • Add approve authorize and policy The PR adds an authorization gate and policy for User View approval in the UserView resource
  • Hungarian translations
  • Feature Multi-Sort This PR introduces Multi-Sort to Advanced Tables. Docs here: https://filamentphp.com/plugins/kenneth-sese-advanced-tables#multi-sort-beta

New Contributors

  • @borex made their first contribution
v3.7.35
December 8, 2024

What’s Changed

  • Add approve authorize and policy The PR adds an authorization gate and policy for User View approval in the UserView resource
v3.7.34
December 3, 2024

What’s Changed

  • Show loading indicator when toggling reorderable columns Show loading indicator when toggling reorderable columns
v3.7.33
December 2, 2024

What’s Changed

  • Improve handling of updated columns This PR fixes an Undefined array key error that would occur when a user would save a view based on a previously saved view that had column sorting, but that sorted column had later been renamed by the developer.
v3.7.32
December 2, 2024

What’s Changed

  • Fix for persisting column searches This PR fixes an issue where the table search or column search wouldn’t be persisted when a UserView was activated.

November 2024

v3.8.0-beta.5
November 22, 2024

What’s Changed

  • Update indicators.blade.php This PR fixes an issue when you have Advanced Indicators enabled globally, but are not using the AdvancedTables trait on a specific resource or page.
v3.8.0-beta.4
November 11, 2024

What’s Changed

  • Improvements Better error messaging, refactor class names, fix bug when resetting form from filter form
v3.7.31
November 11, 2024

What’s Changed

  • Update README.md
v3.8.0-beta.3
November 11, 2024

What’s Changed

  • Update README.md
  • Update README.md
v3.8.0-beta.2
November 11, 2024

What’s Changed

  • initial fixes
  • Advanced indicators beta readme
v3.7.30
November 11, 2024

What’s Changed

  • Update README.md
v3.8.0-beta.1
November 11, 2024

What’s Changed

  • Feature advanced indicators
v3.7.29
November 2, 2024

What’s Changed

  • fix user view resource with multi tenancy This PR fixes an issue with loading the UserViewResource when using multi-tenancy but with ->tenancyEnabled(false). This also deprecates ->tenancyEnabled() and replaces it with ->scopeToTenancy().

October 2024

v3.7.28
October 27, 2024

What’s Changed

  • Fix typo in docs Fixes a typo on the ->favoritesBarLoadingIndicator() method in the documentation example.
  • Add support for Ralphs Record Finder plugin This PR adds support for the Record Finder plugin

New Contributors

  • @blazerunner44 made their first contribution
v3.7.27
October 14, 2024
Just fixing the release version numbering from the previous releases that removed the tailwind import
v3.7.25
October 13, 2024

What’s Changed

  • Remove tailwind import This PR removes the unneeded tailwind import
3.7.25
October 4, 2024

What’s Changed

  • Reset currentPresetView when resetting table This PR resets the currentPresetView property when resetting the table. This property is still experimental and could go away in the future and handled in a different way so use with caution.

September 2024

v3.7.24
September 30, 2024

What’s Changed

  • Fix filter indicators with custom filament filters inside advanced filters This PR fixes filter indicators when using custom Filament filters inside of Advanced Tables. Prior to this PR, if you were using a custom filter with multiple form fields (think a date range filter) inside of Advanced Filters, a duplicate indicator would be displayed for each field even if it should only display one indicator. And if your custom filter was configured to show multiple indicators (ie, one for each field), then it would only repeat the first indicator. This PR fixes these issues.
v3.7.23
September 25, 2024

What’s Changed

August 2024

v3.7.22
August 28, 2024

What’s Changed

  • Fix resetTable (for real this time) Sorry…named the method wrong.
v3.7.21
August 28, 2024

What’s Changed

  • Revert “Fix resetTable” This reverts commit 074c3f375c8621f99ae31826591a607f51d5cc40.
v3.7.20
August 28, 2024

What’s Changed

  • Fix resetTable This PR fixes an issue where the table wasn’t properly being reset, which could cause Filament tabs to be out of sync with the request.
v3.7.19
August 22, 2024

What’s Changed

  • Fix saving user views with multiple columns When saving a UserView with large amountsof columns and/or long column names, php will enforce it’s own ordering algorithm for storing the array keys. This can cause the column order to be incorrect when saving the view and thus activating a UserView can have the wrong column order. This PR will now store column order as an associative array so that the appropiate order will be maintained. Existing views will continue to work and any new views will be saved with the new format. In v4 I will provide a migration to update your existing user views.
  • Improve numeric filter with aggregate relationships When using aggregate relationships (products_count) the Numeric Filter wouldn’t included null results. For example, using the Numeric Filter to filter for less than 2 products, would not return results with null. This PR improves this handling.
  • Hide or show column based on table layout This PR adds better support for grid layout, specifically for disabling column ordering when a table is in grid layout as this doesn’t have any affect on the table. This is particulary useful when using the Table Layout Toggle Plugin.
v3.7.18
August 16, 2024

What’s Changed

  • Fix filter labels with html If you are using this trick to show a tooltip in a table column header, the html would be rendered in the filter and it’s indicator. This PR applies strip_tags() to prevent this.
  • Feature: Add loading indicator to favorites bar This PR adds the option to show an loading indicator in the favorites bar. This is especially helpful with large tables that take a while to switch between views. You may show a loading indicator when switching between views by using the favoritesBarLoadingIndicator() method: php AdvancedTablesPlugin::make() ->favoritesBarLoadingIndictor()
v3.7.17
August 9, 2024

What’s Changed

  • Add initial currentPresetView concept This PR adds a new currentPresetView property. Since activePresetView is reset when the table is changed which can cause unintended side effects when us activePresetView to determine settings like grouping. This concept is new and will be improved / changed over time. Use at your own risk.

July 2024

v3.7.16
July 30, 2024

What’s Changed

  • Convert relative date values to ints This PR fixes an ocassional issue when using the relative date filter (ie. in the next 2 days) where the value was being passed as a string. This PR ensures the values are ints.
v3.7.15
July 27, 2024

What’s Changed

  • Fix aggregate query for postgres This PR fixes the aggregate query when used with belongs to many relationships in postgres.
v3.7.14
July 24, 2024

What’s Changed

  • Fix managed user views when using uuids for users Fixes #306
v3.7.13
July 23, 2024

What’s Changed

  • Add support for belongs to many aggregate relationships with Advanced Filter This PR adds support for BelongsToMany aggregate relationships with AdvancedFilter.
  • Fix advanced filter block picker with table polling Fixes an issue where the block picker dropdown would be closed when table polling was enabled
v3.7.12
July 18, 2024

What’s Changed

  • Improve reorderable columns This PR fixes an issue where reorderable columns wasn’t saving data in the correct array format. While the issue doesn’t appear to have affected reorderable columns in the UI, having a consistent data set will prevent future issues. Since the inconsistent array data was also saved to the DB when creating a UserView, this PR also normalizes the array that is returned from the DB so it’s consistent through the package. A migration will be provided at a later date to fix the database entries and avoid the additional method call to normalize the data. This PR also introduces caching on the getOrderedToggledColumnsFromPresetView() method to improve performance.
v3.7.11
July 16, 2024

What’s Changed

  • Adjust expand button top distance Adjusts the top distance for the absolute positioned expand button when using Advanced Filters to better align with the Reset button
v3.7.10
July 10, 2024

What’s Changed

  • Add additional filter css selectors This PR adds additional css selectors to the filter container and operators
  • Bump dependabot/fetch-metadata from 2.1.0 to 2.2.0 Bumps dependabot/fetch-metadata from 2.1.0 to 2.2.0.
v3.7.9
July 8, 2024

What’s Changed

  • Add default reordering icons

June 2024

v3.7.8
June 28, 2024

What’s Changed

  • Fix clipped view manager badge count Fixes an issue where the view manager badge count would be clipped when it was in the favorites bar.
v3.7.7
June 25, 2024

What’s Changed

  • Fix-overflowing-user-views-in-favorites-bar Fixes an issue where user views would overflow on screens larger than sm: when wider than the container.
v3.7.6
June 21, 2024

What’s Changed

  • Fix loading preset view in view manager Fixes #295
v3.7.5
June 21, 2024

What’s Changed

  • Fix incorrect button size property for Table Builder users Fixes #292
  • Fix page resetting on refresh Fixes #291 This PR fixes a bug where the page would reset back to the first page when you had a presetView or userView loaded and refreshed the page. Now, the page will be maintained on refresh.
v3.7.4
June 10, 2024

What’s Changed

  • Scope View Manager to class This PR fixes an issue where the view manager would be shown multiple times when using AdvancedTables on multiple tables that are in multiple form tabs.
v3.7.3
June 9, 2024

What’s Changed

  • Feature: Allow View icons to be hidden in the View Manager
v3.7.2
June 7, 2024

What’s Changed

  • Replace hardcoded ‘id’ for ->getKeyName() for custom key names

May 2024

v3.7.1
May 27, 2024

What’s Changed

  • Fix for using actions when using a Filament SelectFilter with a relationship inside of AdvancedFilters Fixes #279
v3.7.0
May 26, 2024

What’s Changed

  • Feature: Add Is Next… and Is Last… date filters This PR adds new Is Next and Is Last date filters for Advanced Filters allowing you to filter dates like “is last month” or “is next year”. Using the filters will set a date range between the start and end of whatever unit is chosen
If you are using Advanced Filters and have published the lang files, you will need to republish them in order to have the new filters display correctly. You can also add the following to your existing language files:
'is_next' => [
    'indicator' => 'is next',
    'option' => 'is next',
],

'is_last' => [
    'indicator' => 'is last',
    'option' => 'is last',
],
v3.6.21
May 17, 2024

What’s Changed

  • Remove forgotten ray Sorry!
v3.6.20
May 17, 2024

What’s Changed

  • Feature allow view manager to be displayed as button By default, View Manager is displayed as a icon button. You may display it as a button with a label with additional options available as well: php AdvancedTablesPlugin::make() ->viewManagerButton(label: 'Views') ->viewManagerButtonSize('lg') ->viewManagerButtonOutlined() ->viewManagerIconPosition(IconPosition::After)
  • Feature: Allow tenancy to be disabled If you are using multi-tenancy in your app, but would prefer User Views and Preset Views to not be scoped to each tenant (i.e. a user’s views would be the same regardless of which tenant they are in), you may disable multi-tenancy in the plugin by passing false to the ->tenancyEnabled() method: php AdvancedTablesPlugin::make() ->tenancyEnabled(false)
  • Improve resetTable method
  • Fix bug with custom filters and indicators
  • Bump dependabot/fetch-metadata from 2.0.0 to 2.1.0 Bumps dependabot/fetch-metadata from 2.0.0 to 2.1.0.

April 2024

v3.6.19
April 26, 2024

What’s Changed

  • Fix for using ->hidden() and ->visible() methods on filters in Advanced Filter Fixes a bug where ->visible() ->hidden() were not being applied when a filter was defined inside the ->filters() method of Advanced Filter.
  • Update icon name from reorderingIcon() to reorderIcon()
v3.6.18
April 26, 2024

What’s Changed

  • Improvement: allow reorderable columns icons to be configured
v3.6.17
April 23, 2024

What’s Changed

  • Fix select filter with relationships after filament 3.2.63 update
v3.6.16
April 23, 2024

What’s Changed

  • Fix relationship declaration after Filament 3.2.63 update
  • Bump aglipanci/laravel-pint-action from 2.3.1 to 2.4 Bumps aglipanci/laravel-pint-action from 2.3.1 to 2.4.
v3.6.15
April 12, 2024

What’s Changed

  • Fix Advanced Filters not querying when a column uses ->hidden() When a filament column uses ->hidden() the column appears in the Advanced Filter block picker, but does not filter nor show indicators. This is due to a bug with reorderableColumns that was rebuilding the table columns (in order to render them in the order the user desires), but mistakeningly excluding hidden columns. This in turns means that the column doesn’t exist in the table’s column for Filament to filter against. This PR fixes this.
v3.6.14
April 10, 2024

What’s Changed

  • Fix for UserViewResource when using RelationManagerConfiguration inside RelationGroups
v3.6.13
April 3, 2024
No release notes.

March 2024

v3.6.12
March 30, 2024

What’s Changed

v3.6.11
March 29, 2024

What’s Changed

  • Allow setting the Badge Color on Favorites Bar button badges This PR should allow setting the Badge Color on Favorites Bar button badges CleanShot 2024-03-30 at 02 54 25
  • Docs for badge color

New Contributors

  • @abishekrsrikaanth made their first contribution
v3.6.10
March 29, 2024

What’s Changed

  • Bump dependabot/fetch-metadata from 1.6.0 to 2.0.0 Bumps dependabot/fetch-metadata from 1.6.0 to 2.0.0.
  • Allow reorderable columns per resource
  • Feature tooltips on preset views
  • Add portuguese lang
v3.6.9
March 20, 2024

What’s Changed

  • Fix preset view visibility
v3.6.8
March 19, 2024

What’s Changed

  • lang: Update Dutch translation for consistency “Wereldwijd” is a direct translation of “Globally” (Worldwide), but it’s better to use the term “Globaal” for the Dutch language.
  • Fix preset views interactions with table widgets

New Contributors

  • @CodeWithDennis made their first contribution
v3.6.7
March 10, 2024

What’s Changed

  • Laravel 11 Support
  • Translation updates
  • Dutch translations

February 2024

v3.6.6
February 27, 2024

What’s Changed

  • Update docs
  • Fix user view resource filter with custom pages
v3.6.5
February 19, 2024

What’s Changed

v3.6.4
February 16, 2024

What’s Changed

  • Fix for or groups and removing active view when removing filters
v3.6.3
February 8, 2024

What’s Changed

  • Feature allow custom filter picker sorting By default (and currently) filters are sorted alphabetically. Now you can customize the filter picker sort order using ->filterPickerFilterSort(). Here’s how it works. 1. pass in false to sort the filters according to the way you have your table set up. This works independently of if you reorder columns in the UI as I don’t think the filter names should move around. So whatever order you have set up in your table would be the order in the filters. 2. pass in an array of column names and it will sort by those column names. You don’t have to set them all up. If you just want to make sure one it always first, you can just pass in that column’s name, and then all the rest of the columns will be added afterwards (in the same sort order as the table).
v3.6.2
February 6, 2024

What’s Changed

  • Fix non escaped labels

January 2024

v3.6.1
January 24, 2024

What’s Changed

  • Fix failing tests with 3.2
v3.6.0
January 24, 2024

What’s Changed

  • Fix isRemovingAllFilters
Filament v3.2 introduced a new deferFilters feature which updated some of the internal working of the code. I was able to work around them to support this new feature but also maintain compatibility up until 3.2.4 in which Filament updated an internal naming parameter to $isRemovingAllFilters. To support this I am tagging 3.6.0. If you need to stay on a lower version of Filament, then please set lock plugins version to 3.5.28 in your composer file.
v3.5.28
January 19, 2024

What’s Changed

  • Fix issue with using preset views without key names
  • Fix issue with using preset views without key names
v3.5.27
January 17, 2024

What’s Changed

  • Fix SQL column injection vulnerability
v3.5.26
January 16, 2024

What’s Changed

  • Compatibility update with Filament v3.2 This PR adds compatibility for Filament’s new Apply Filter option.
v3.5.25
January 5, 2024

What’s Changed

  • Qualify column in Advanced Filter
v3.5.24
January 5, 2024

What’s Changed

  • Bump aglipanci/laravel-pint-action from 2.3.0 to 2.3.1 Bumps aglipanci/laravel-pint-action from 2.3.0 to 2.3.1.
  • Add missing down method to migration
  • Improve default preset views on initial load
  • Dont show hidden table columns in reorderable columns
  • Fix toggled and sorting columns UI bug
  • Fix for view icons in table builder
  • Improve advanced filter layout with long labels

December 2023

v3.5.23
December 19, 2023

What’s Changed

  • Reset table search on default
v3.5.22
December 18, 2023

What’s Changed

  • Add hook for managed related resources
  • Allow default view to be configured on resource
v3.5.21
December 12, 2023

What’s Changed

  • Fix filter indicator with simple string indicators
3.5.20
December 1, 2023

What’s Changed

  • Add options for filter indicator labels

November 2023

v3.5.19
November 30, 2023

What’s Changed

  • Refactor to cache methods
  • Update README.md
  • Allow label to be set on overriden filters
v3.5.18
November 30, 2023

What’s Changed

  • Update numeric filter to support scoped relationships
v3.5.17
November 29, 2023

What’s Changed

  • Add additional css selectors
v3.5.16
November 27, 2023

What’s Changed

  • Cache PresetViews
v3.5.15
November 23, 2023

What’s Changed

  • Fix filter builder “or” translation
v3.5.14
November 23, 2023

What’s Changed

  • Fix buildFilterIndicators method
v3.5.13
November 22, 2023

What’s Changed

  • Fix Filament theme css
v3.5.12
November 22, 2023

What’s Changed

  • Fix standalone tablebuilder guard
v3.5.11
November 22, 2023

What’s Changed

  • Only show indicator groups when or groups are enabled
  • Update rtl css
  • Allow custom auth guards
v3.5.10
November 21, 2023

What’s Changed

  • Fix resource widgets no appearing in user views resource
  • Fix userview when no filters are present
  • Add Laravel 10 requirement to docs
v3.5.9
November 21, 2023

What’s Changed

  • Expand multi-tenancy support
  • Fix css end alignment on mobile
  • Feature include, exclude, default operators
v3.5.8
November 19, 2023

What’s Changed

  • Implement aggregate relationship columns
  • Prioritize options in selectFilter
v3.5.7
November 17, 2023

What’s Changed

  • Fix or groups
v3.5.6
November 17, 2023

What’s Changed

  • Improve TextFilter when using is and is_not with relationships
  • Fix managedPresetViews with different user model
  • Improve docs on defaultFilters
v3.5.5
November 17, 2023

What’s Changed

  • Allow disabling of “or” groups
  • Fix down method migrations
v3.5.4
November 15, 2023

What’s Changed

  • Fix tenant migration when not on default panel
v3.5.3
November 14, 2023

What’s Changed

  • Improve Add Tenancy Command
3.5.2
November 14, 2023

What’s Changed

  • Improve selectFilter with many to many relationships
v3.5.1
November 14, 2023

What’s Changed

  • [FIX] Improve default filter state
v3.5.0
November 14, 2023

What’s Changed

  • [Feature] support multi-tenancy
v3.3.11
November 14, 2023

What’s Changed

  • [Docs] add new is empty and is not empty operators
  • [DOCS] Clarify Select Filter naming
  • [DOCS] Update min version requirement
  • Bump dependencies
  • Update french translations for isEmpty and isNotEmpty
  • Improve isEmpty and isNotEmpty queries
v3.3.10
November 13, 2023

What’s Changed

  • Fix missing variable
v3.3.9
November 13, 2023

What’s Changed

  • Fixes
  • Add french translation to filter builder
  • Add isEmpty and isNotEmpty to textFilter and selectFilter
v3.3.8
November 8, 2023

What’s Changed

  • Support modal, above, below filters layouts
v3.3.7
November 6, 2023

What’s Changed

  • Fix for RM with configuration When RM’s have a configuration like: php public static function getRelations(): array { return [ RelationManagers\CommentsRelationManager::make([ 'lazy' => false, ]), ]; } they get wrapped in a RelationManagerConfiguration object which in turn causes an error when accessing the UserViewResource.
v3.3.6
November 6, 2023

What’s Changed

  • Fix filter picker from flipping
v3.3.5
November 6, 2023

What’s Changed

  • Feature filter builder search and columns
  • Arabic filter builder lang and fix
v3.3.4
November 3, 2023

What’s Changed

  • Support DB prefixes

October 2023

v3.3.3
October 31, 2023

What’s Changed

  • Update filter indicators to new API
v3.3.2
October 31, 2023

What’s Changed

  • Update views for new core changes
v3.3.1
October 31, 2023

What’s Changed

  • Improve column filter api
v3.3.0
October 31, 2023

What’s Changed

  • Feature: column based query builder
v3.2.16
October 23, 2023

What’s Changed

  • Fix wrong config size
v3.2.15
October 23, 2023

What’s Changed

  • Update Advanced Filter for Filament’s new slideover/modal options
3.2.15
October 23, 2023

What’s Changed

  • Allow resource navigation icon to be null
v3.2.14
October 22, 2023

What’s Changed

  • Fix when table used in layout mode
v3.2.13
October 22, 2023

What’s Changed

  • Update favorite bar spacing after core RM update Filament PR #8652 updated the RM spacing. This PR updates the favorites bar view accordingly.
  • Docs update
  • Fix getTableFilterDefaultState
v3.2.12
October 21, 2023

What’s Changed

  • Fix loading default preset view on first page load
v3.2.11
October 21, 2023

What’s Changed

  • Improve preset views when reloading
v3.2.10
October 21, 2023

What’s Changed

  • Fix column reordering with multiple relationships This PR fixes an issue with reordering when multipled relationships of the same type were being used (customer.name, customer.email). Filament stores toggledColumn data in an undotted array in the session. Usually this works fine, and the initial PR for reordering columns modified this array. However, when there are multiple relationships, this will group the relation columns together. This PR introduces an ordered array sidecar to handle this in both the database and the session. It also fixes an issue with default preset views, and makes the logic more robust.
v3.2.9
October 20, 2023

What’s Changed

  • Feature allow favorites bar to be disabled
v3.2.8
October 20, 2023

What’s Changed

  • Add Panel Page helper class and docs
  • Fix reseting table column searches
  • Add Arabic translation and fix RTL
v3.2.7
October 19, 2023

What’s Changed

  • Update actions
  • feat(lang): add german translations
  • feat: favorites bar theme enum This PR introduces an optional enum to the favoritesBarTheme() function. I had to first dig through the code, to find out that branded tabs are called tabs-brand and simple links are called links-simple. The enum provides more clarity and makes it easier for the user to select their desired theme. This introduces no breaking changes as the underlying strings where not changed.
  • Fix persist column searches
v3.2.6
October 17, 2023

What’s Changed

  • Improve user view resources with multiple panels
v3.2.5
October 17, 2023

What’s Changed

  • fix: missing Closure import for PresetView concern
  • Update README.md

New Contributors

  • @Quadrubo made their first contribution
v3.2.4
October 16, 2023

What’s Changed

  • Allow expand view position to be configured
v3.2.3
October 16, 2023

What’s Changed

  • Refactor
v3.2.2
October 16, 2023

What’s Changed

  • Fix reorderable columns with relations
v3.2.1
October 16, 2023

What’s Changed

  • Fixes for advanced filters
v3.2.0
October 14, 2023

What’s Changed

  • Implement advanced filter builder
v3.1.5
October 14, 2023

What’s Changed

  • Fix error when removing columns
v3.1.4
October 11, 2023

What’s Changed

v3.1.3
October 10, 2023

What’s Changed

  • Fix user views when no filters are present
v3.1.2
October 9, 2023

What’s Changed

  • Add quick save to table
v3.1.1
October 7, 2023

What’s Changed

  • Fix missing custom view classes
v3.1.0
October 4, 2023

What’s Changed

  • Fix storing toggle column order in db
  • Feature replace user views

September 2023

v3.0.8
September 28, 2023

What’s Changed

  • Fix non favorited global views not appearing in favorites bar on upgrade
v3.0.7
September 27, 2023

What’s Changed

  • Fix closure
v3.0.6
September 27, 2023

What’s Changed

  • Fix missing quick color property value
v3.0.5
September 27, 2023

What’s Changed

  • Add tips and tricks to docs
  • Allow closure in plugin config
v3.0.4
September 23, 2023

What’s Changed

  • Update README.md
v3.0.3
September 23, 2023

What’s Changed

  • Update README.md
v3.0.2
September 23, 2023

What’s Changed

  • Update docs for upgrading migrations
v3.0.1
September 23, 2023

What’s Changed

  • Detach user managed views on delete
v3.0.0
September 22, 2023
Stable release!

What’s Changed

  • Update for newest Filament v3 alpha
  • v3 updates
  • Fix relation managers
  • Fixes for v3
  • Fix default method
  • Update deprecated methods
  • Fix hiding select create form
  • Fix for new v3 color api
  • Follow v3 tailwind and css recommendations
  • Fix conflicting method names
  • fix dev filter sets with relation managers
  • Update from v1
  • v3 service provider update
  • Icon component updates
  • Update README.md
  • Update README.md
  • Update README.md
  • Docs update
  • Update README.md
  • Build
  • Docs update
  • Update README.md
  • Update composer.json
  • Update HasFavorites.php
  • Update README.md
  • v3 updates
  • Favorites bar fixes
  • Update IconSelect.php
  • Icon update
  • Update to new v3 render hooks
  • Update translation and stubs for v3
  • Bump dependabot/fetch-metadata from 1.5.1 to 1.6.0 Bumps dependabot/fetch-metadata from 1.5.1 to 1.6.0.
  • fix filament forms affixes error
  • Fluently instantiate
  • v3 initial release
  • Initial fixes
  • Build css
  • Update naming of example files
  • Fix user view query
  • User View Query fix and Quick Save name change
  • Allow quick save icon to be configured
  • Improve icon select with caching and excluding
  • Implement view manager in table toolbar
  • Improve favorite view sorting
  • Readme updates
  • Add convert icon helper
  • Update README.md
  • Update README.md
  • Bump actions/checkout from 3 to 4 Bumps actions/checkout from 3 to 4.
  • Fix resetting filter forms
  • Bump toggle-icon dependency to stable
v3.0.0-beta11
September 21, 2023

What’s Changed

  • Update README.md
  • Bump actions/checkout from 3 to 4 Bumps actions/checkout from 3 to 4.
  • Fix resetting filter forms
v3.0.0-beta10
September 21, 2023

What’s Changed

  • Update README.md
v3.0.0-beta9
September 20, 2023

What’s Changed

  • Readme updates
  • Add convert icon helper
v3.0.0-beta8
September 20, 2023

What’s Changed

  • Improve icon select with caching and excluding
  • Implement view manager in table toolbar
  • Improve favorite view sorting
v3.0.0-beta7
September 19, 2023

What’s Changed

  • Allow quick save icon to be configured
v3.0.0-beta6
September 16, 2023

What’s Changed

  • User View Query fix and Quick Save name change
v3.0.0-beta5
September 15, 2023

What’s Changed

  • Fix user view query
v3.0.0-beta4
September 15, 2023

What’s Changed

  • Update naming of example files
v3.0.0-beta3
September 15, 2023

What’s Changed

  • Build css
v3.0.0-beta2
September 15, 2023

What’s Changed

  • Initial fixes
v3.0.0-beta1
September 15, 2023

What’s Changed

  • Fluently instantiate
  • v3 initial release