1
0
This repository has been archived on 2021-02-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ttv-streamkit/app/WebhookAction.php
2020-04-29 23:58:18 +02:00

26 lines
440 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class WebhookAction extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
"discord_hook_url"
];
/**
* Get the twitch webhook that executes this action.
*/
public function twitchWebhook() {
return $this->belongsTo("App\TwitchWebhook", "webhook_id");
}
}