maxtor831
How to use TextColumn instead of SelectColumn?
Hi all,
I am new to filament, started looking at it last week.
Can you please help, I basically want to display TextColum instead of SelectColumn based on this?
public static function table(Table $table): Table
{
return $table
->columns([
SelectColumn::make('status')
->options([
'0' => 'Draft',
'1' => 'Complete',
'2' => 'Incomplete',
])
Would you be able to advise please, much appreciated.
thanks
#TextColumn #SelectColumn
13 replies