Laravel model casts are not working when using `->diff()`. Example code: ```php $diff = $post->getVersion(1)->diff($post->getVersion(2)); $diff->toArray(); ``` Both the old and new values don't respect model casts and show the raw value.