richardpiel/cakephp-softdelete

Soft Delete Behavior for CakePHP

4.03 2021-07-12 19:43 UTC

This package is auto-updated.

Last update: 2024-04-13 01:17:15 UTC


README

You can install this plugin into your CakePHP application using composer.

The recommended way to install composer packages is:

composer require richardpiel/cakephp-softdelete

Then you'll need to load the plugin in your src/Application.php file.

$this->addPlugin('SofDelete');

or you can use the console to do this for you.

bin/cake plugin load SoftDelete