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?

public function getFullnameAttribute()
{
return $this->first_name.' '.$this->last_name;
}