Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 330 Bytes

events.md

File metadata and controls

18 lines (13 loc) · 330 Bytes

Events

The Taggable trait will fire off two events.

Conner\Tagging\Events\TagAdded;

Conner\Tagging\Events\TagRemoved;

You can add listeners and track these events.

\Event::listen(Conner\Tagging\Events\TagAdded::class, function($article){
	\Log::debug($article->title . ' was tagged');
});