with('o',$this) ->with('edit',$edit) ->with('old',$old) ->with('new',$new); } public function render_item_old(int $key): ?string { $pw = Arr::get($this->oldValues,$key); return $pw ? str_repeat('*',16) : NULL; } public function render_item_new(int $key): ?string { $pw = Arr::get($this->values,$key); return $pw ? str_repeat('*',16) : NULL; } }