fpolli
fpolli
FFilament
Created by fpolli on 3/16/2025 in #❓┊help
Table row grouping oddness
I am grouping rows by a field and a related field like so:
use Illuminate\Database\Eloquent\Builder;
return $table
->recordTitleAttribute('name')
->groups([
Group::make('the_type')
->groupQueryUsing(fn (Builder $query) => $query->groupBy('the_type','user.initials'))
use Illuminate\Database\Eloquent\Builder;
return $table
->recordTitleAttribute('name')
->groups([
Group::make('the_type')
->groupQueryUsing(fn (Builder $query) => $query->groupBy('the_type','user.initials'))
This works and groups the rows the way I want. Note it accepts an Eloquent Builder. When I try to put a summarizer on one of the columns, however, it sends a Database\Query\Builder to the groupUsingQuery instead of an Eloquent Builder and throws an error. If I change the groupQueryUsing method to accept a Database Builder, it does not properly craft the SQL to include the users table for the users.initials field and throws an error.
2 replies
FFilament
Created by fpolli on 3/14/2025 in #❓┊help
Hide table column based on value of another column
How can I do this? In ->hidden(), I tried a closure passing the $record and accessing the attribute, and I tried passing Get and using $get('name'), but the first way passed null to the closure and the second told me "Typed property Filament\Forms\Components\Component::$container must not be accessed before initialization"
14 replies