Rohan Adhikari

Results 2 comments of Rohan Adhikari

I think this issue occurs because, as the ID remains the same, the state is retrieved from the cache instead of fetching the state again from data. This seems related...

This issue is caused here, ```php public function getValidationAttribute(): string { return $this->evaluate($this->validationAttribute) ?? Str::lcfirst($this->getLabel()); // getLabel() returns Htmlable, but it's being treated as a string. } ``` In my...