i am working with PowerGrid table, i need to create a condition to change the text color of the number if it is "1" in the column "send?".
public function columns(): array
{
return [
Column::make('Invitado', 'invitado')
->sortable()
->searchable(),
Column::make('Anticipada', 'anticipada')
->sortable()
->searchable(),
Column::make('Whatsapp', 'whatsapp')
->sortable()
->searchable(),
Column::make('Cantidad', 'cantidad'),
Column::make('Estado', 'estado'),
Column::make('Send?', 'send?'),
Column::action('Action')
];
}

This can be achieved by adding CSS classes to the span attribute based on the value of the column:
for reference: https://livewire-powergrid.com/table/include-columns.html#contentclasses