I am having offers and services table.
Service(s) is a child of an offer. So far I have established functionality for soft deletin
If you want to get cascading softDeletes in your Eloquent Models I highly recommend using this library iatstuti/laravel-cascade-soft-deletes
// get it with composer.
$ composer require iatstuti/laravel-cascade-soft-deletes="1.0.*"
The one provided in the getting started sample.
hasMany(Comment::class);
}
}