40 lines
980 B
PHP
40 lines
980 B
PHP
<?php
|
|
|
|
namespace App\Domains\Webhook\Models;
|
|
|
|
use App\Domains\Workspace\Models\Workspace;
|
|
use Database\Factories\WebhookFactory;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
class Webhook extends Model
|
|
{
|
|
/** @use HasFactory<WebhookFactory> */
|
|
use HasFactory;
|
|
|
|
protected $guarded = ['id'];
|
|
|
|
protected $casts = [
|
|
'events' => 'array',
|
|
'is_active' => 'boolean',
|
|
];
|
|
|
|
protected static function newFactory(): WebhookFactory
|
|
{
|
|
return WebhookFactory::new();
|
|
}
|
|
|
|
/** @return HasMany<WebhookDelivery, $this> */
|
|
public function deliveries(): HasMany
|
|
{
|
|
return $this->hasMany(WebhookDelivery::class);
|
|
}
|
|
|
|
/** @return BelongsTo<Workspace, $this> */
|
|
public function workspace(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Workspace::class);
|
|
}
|
|
}
|