21 lines
404 B
PHP
21 lines
404 B
PHP
<?php
|
|
|
|
namespace App\Domains\Webhook\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class WebhookDelivery extends Model
|
|
{
|
|
protected $guarded = ['id'];
|
|
|
|
protected $casts = [
|
|
'payload' => 'array',
|
|
'delivered_at' => 'datetime',
|
|
];
|
|
|
|
public function webhook(): \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
{
|
|
return $this->belongsTo(Webhook::class);
|
|
}
|
|
}
|