26 lines
440 B
PHP
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");
|
|
}
|
|
}
|