FilamentF
Filament2y ago
Sydd

table column dont display value from resource

Dear all, why column with values from table dont show in the column ? 2 hours its works, but something going wrong and i dont know what ... resurce is from user model,
name is displayed, but fullName, email etc. not.


public static function table(Table $table): Table
{
return $table
->columns([
TextColumn::make('name'),
TextColumn::make('fullName'),
TextColumn::make('email'),
Solution
You have possibly toggled the columns off and removed the toggle code so they are hidden. add ->toggleable() to the columns and then you will see a toggle icon to the right of the top table.
Was this page helpful?