I have a problem with the afterDelete callback method. I can\'t use them.
Inside one of my \"Storages\" plugin controllers I want to delete a record and after that I wan
Try
use Cake\Log\Log; use Cake\ORM\Table; class StoragecontainerBlockElementsTable extends Table { public function afterDelete($event, $entity, $options){ Log::debug('Got here'); } }
Details Here