Merge two columns into one?
Hi, I'm new using filament and what I need is simple ( I believe ) I just want to display into one column (full name) two columns from model (firstName and lastName) tried with this but didn't work ... any ideas?
Solution:Jump to solution
what i do is create attribute inside my model
```php
public function getFullnameAttribute()
{
return $this->first_name.' '.$this->last_name;...
5 Replies
sorry, didn't mention it;s from a relationship
Solution
what i do is create attribute inside my model
then inside my resource file, i do this
in case if i have relationshion to user
I hope you get the idea
that's wonderfull !! thank you so much!