@jearson Write a function to concatenate them. If you're talking about your User model, then do something like:
public function fullName() {
return $this->firstName . ' ' . $this->middleName . ' ' . $this->lastName;
}
Then when accessing a User, you can use:
$user->fullName();
You'll have to take care of logic to allow for null middle names etc otherwise you'll end up with two spaces in-between the firstName and lastName values.