mirror of
https://github.com/pelican-dev/panel.git
synced 2026-05-04 18:00:48 +03:00
22 lines
402 B
PHP
22 lines
402 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class Webhook extends Model
|
||
|
|
{
|
||
|
|
use HasFactory;
|
||
|
|
|
||
|
|
protected $fillable = ['payload', 'successful_at', 'event', 'endpoint'];
|
||
|
|
|
||
|
|
public function casts()
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
'payload' => 'array',
|
||
|
|
'successful_at' => 'datetime',
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|