lasthourcloud/app/Models/Webhook.php

15 lines
226 B
PHP
Raw Normal View History

2023-07-13 13:07:42 +00:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Webhook extends Model
{
protected $guarded = [];
2023-07-13 20:03:27 +00:00
protected $casts = [
2023-08-24 14:14:09 +00:00
'type' => 'string',
2023-07-13 20:03:27 +00:00
'payload' => 'encrypted',
];
}