->extraAttribute not working on TextInput
I have this TextInput on a form inside an app I just upgraded to v3.
That exact code used to work on v2, but on V3 the text color does not change. I also tried ->extraInputAttribute but no luck. Is there something odd that I need to look for? The TextInput is inside Grid\Section.
TextInput::make('status')
->label('Status')
->extraAttributes(['class' => 'text-teal-600'])
->disabled(),That exact code used to work on v2, but on V3 the text color does not change. I also tried ->extraInputAttribute but no luck. Is there something odd that I need to look for? The TextInput is inside Grid\Section.