If you want to fetch the user's fullname in a proper way instead of doing Auth::user()->firstname.' '.Auth::user()->lastname, you can put this method on your User model.
public function getNameAttribute()
{
return $this->firstname.' '.$this->lastname;
}