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