jpkleemans / attribute-events

🔥 Fire events on attribute changes of your Eloquent model
https://attribute.events
MIT License
304 stars 20 forks source link

How to get the attribute value before changed #15

Closed gotzsys closed 1 year ago

gotzsys commented 1 year ago

Hello I have an event fired when the image attribute was changed. I want to remove the old image from S3 bucket when a resource was updated.

How is the best way to do that?

jpkleemans commented 1 year ago

Hi, there is a $model->getOriginal() method to get the original value of a model. Could you check if that works for you?