groups([ Group::make not showing first item

For some reason my groups below are not showing correctly.
Only the second item shows. If I swap, only the second item shows.
->groups([
    Group::make('created_at')->date(),
    Group::make('updated_at')->date(),
])
->columns([
    Tables\Columns\TextColumn::make('updated_at')->date(),
    Tables\Columns\TextColumn::make('created_at')->date(),
])


Where do I look. ?
image.png
Solution
Please update to latest version. Was fixed in 3.2.95

https://github.com/filamentphp/filament/pull/13620
GitHub
Fixes array_reduce to use $carry in #13559. It's only returning one group now.

Code style has been fixed by running the composer cs command.
Changes have been tested to not break existing fu...
Was this page helpful?