$this->categories, 'overallTotal' => $this->overallTotal->toLivewire(), 'fields' => $this->fields, ]; } public static function fromLivewire($value): static { return new static( $value['categories'], AccountBalanceDTO::fromLivewire($value['overallTotal']), $value['fields'], ); } }