integration-helper/integration-version-laravel

Integration Helper with Version Laravel

1.0.18 2024-12-12 00:47 UTC

This package is auto-updated.

Last update: 2024-12-12 00:48:15 UTC


README

Usage:

1. Add To Model

     public function save(array $options = [])
    {
        $result = parent::save($options);

        Context::getInstance()->getIntegrationVersionManager()->executeOne(Seeder::SOURCE, $this->id);

        return $result;
    }