*/ public function toArray(Request $request): array { // return parent::toArray($request); return [ 'id' => $this->id, 'name' => $this->name, 'weight' => $this->weight, 'type' => $this->type, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at, ]; } }