concatenate value in text column
I have a order table , which has user name Column , And I want to concatenate the firstname and lastname of this relationship , what should I do :
Relationship :
Solution:Jump to solution
```php
->columns([
Tables\Columns\TextColumn::make('user')
->label('User name'),
->formatStateUsing(fn($state) => $state.firstname . ' ' . $state->lastname)...
3 Replies