tag component with colors?
hi any component to achieve this (attached image)?, so i can have diff color depending of the status (field on my db). any tip will be very appreciated, thank you
Solution:Jump to solution
use a ViewField
```php
ViewField::make('status')
->view('custom-status')...
6 Replies
how i can put that in my code? return $form
->schema([
TextInput::make('status')
->label('Status'),
right now i have it as text input
Solution
use a ViewField
works good, how i can align that better? like the other fields
got it, everytime i use viewfield i need a custom theme
thank you