I am trying to get the fullname from the database.
but the data base doesn't have fullname but firstname lastname & middlename,
I am new to laravel and i am trying to get the full name like this. but its giving me error
 'firstName' => $this->first_name,
 'middleName' => $this->middle_name,
 'lastName' => $this->last_name,
 'fullName' => $this->first_name + $this->middle_name + $this->last_name,
 
     
    