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