I\'m trying to delete images when deleting the container of those images with a cascading model::delete
The cascading works fine, but I can\'t get the model call bac
If the models are related with hasMany/hasOne, both RelatedImage::beforeDelete() and RelatedImage::afterDelete() should be called when they are removed. Try putting the delete logic there instead?