*/ public function toArray(Request $request): array { return [ 'id' =>$this->id, 'name' =>$this->name, 'email' =>$this->email, 'created_at' =>$this->created_at->toDateTimeString(), 'updated_at' =>$this->updated_at->toDateTimeString(), 'position' => $this->position, 'firstname' => $this->firstname, 'lastname' => $this->lastname, 'roles' => $this->roles->pluck('name'), ]; } }