app/Events/ArticleWasApproved.php
// All this event class does is accepting the article as a parameter, to pass it to the Listener final class ArticleWasApproved{ use SerializesModels; public $article; public function __construct(Article $article) { $this->article = $article; }}