outl1ne / nova-settings

A Laravel Nova tool for editing custom settings using native Nova fields.
MIT License
273 stars 97 forks source link

Fix for #85 #86

Closed JoshMoreno closed 2 years ago

JoshMoreno commented 2 years ago

Fixes #85

I refactored to use methods already on the model to make this package's code simpler. It's basically what \Illuminate\Database\Eloquent\Concerns\HasAttributes::transformModelValue does but just the casts part. Wasn't sure if there would ever be casts defined on the model, so that's why I saved/restored it in the new code.