Start your All-Access Pass to unlock this challenge
Suppose we format the value of a field like this:
yield TextField::new('lastName')
->formatValue(static function($value, User $user) {
return strtoupper($value);
});
What effect will this have?