Placeholder color in TextColumn
I have the following:
The default style is to grey out the placeholder. Is there a way to set the placeholder in another color? Or conditionally color it (e,.g I want it to be red if the value of receiver.name equals the auth()->user()->name() )
Tables\Columns\TextColumn::make('receiver.name')
->label('To')
->placeholder(auth()->user()->name),
The default style is to grey out the placeholder. Is there a way to set the placeholder in another color? Or conditionally color it (e,.g I want it to be red if the value of receiver.name equals the auth()->user()->name() )