nitinkaware / laravel-dependable-softdelete
A laravel dependable soft delete package
Requires
- php: ~5.6|~7.0
- illuminate/support: ~5.1
Requires (Dev)
- phpunit/phpunit: ~4.0||~5.0
- squizlabs/php_codesniffer: ^2.3
This package is auto-updated.
Last update: 2024-10-26 22:35:49 UTC
README
This package allows you to delete the dependant relationship of your model.
Installation
You can install the package via Composer:
$ composer require nitinkaware/laravel-dependable-softdelete
Now add the service provider in config/app.php file:
'providers' => [ // ... NitinKaware\DependableSoftDeletable\SoftDeletableServiceProvider::class, ];
##How to use the package?
Just define the relationship array on model.
Filename: User.php class User extends Model { use DependableDeleteTrait, SoftDeletes; protected static $dependableRelationships = ['comments']; public fuction comments() { return $this->hasMany(Comment::class); } }
Now when you will delete the user, all the comments associated with deleting user will automatically deleted. If you have other relation defined in Comment.php model, then they will be deleted too.
Change log
Please see CHANGELOG for more information on what has changed recently.
Testing
$ composer test
Contributing
Please see CONTRIBUTING and CONDUCT for details.
Security
If you discover any security related issues, please email nitin.kaware1@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.