li0nel / laravel-drip
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/li0nel/laravel-drip
Requires
- guzzlehttp/guzzle: ^6.3
This package is not auto-updated.
Last update: 2025-10-01 15:31:34 UTC
README
Using this package you can register Events and Tags straight from your Eloquent models.
Here are a few examples of the provided methods:
// fetch a user $user = User::first(); // add an Event for this user $user->registerEvent('received_job_offer', ['job_title' => 'great_job']); // add a Tag for this user $user->addTag('candidate');
Installation
This package can be installed through Composer.
composer require li0nel/laravel-drip
In Laravel 5.5 and above the package will autoregister the service provider. In Laravel 5.4 you must install this service provider.
// config/app.php 'providers' => [ ... li0nel\Drip\DripServiceProvider::class, ... ];