I have a example of cascade delete but it looks too big and complicated, is there a way to shorten this code?
protected static function boot()
{
parent::boot();
static::deleted(function ($parent) {
// $versions = $parent->game_versions();
$versions = $parent->game_versions;
foreach($versions as $version){
$version->delete();
}
});
}
Someone can help me with that?