Как снять базу данных FullName Laravel

    public function getFullNameAttribute()
    {
        return "{$this->first_name} {$this->last_name}";
    }
  

      $agents = User::whereId($agent->id)->get()->pluck('full_name', 'id');


      $agents = json_decode(json_encode($agents), true);