belongsTo("App\User"); } /** * Get webhook action */ public function webhookActions() { return $this->hasMany("App\WebhookAction", "webhook_id"); } // event handlers /** * Get discord message/embed assigned to this twitch webhook */ public function discordWebhookMessage() { return $this->morphedByMany("App\DiscordWebhookMessage", "twitch_webhook_event"); } }