I want to create a column that shows the length of the field title: ```php TextColumn::make('Title') ->formatStateUsing(function ($record) { $length = strlen($record->title); return "<b>{$length}</b> /" . LENGTH_TITLE; }) ->html(), ```