© 2026 Hedgehog Software, LLC
->formatStateUsing(function ($state) { return $state / 100; })
Unsupported operand types: array / int
array:2 [▼ // ... 0 => 100 1 => 400 ]
->formatStateUsing(function ($state) { return $state[0] / 100 . ' - ' . $state[1] / 100; })
1