integration-helper/integration-version-laravel

Integration Helper with Version Laravel

1.0.22 2025-01-08 18:20 UTC

This package is auto-updated.

Last update: 2025-03-08 18:36:16 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;
    }