coolify/app/Models/Webhook.php

19 lines
281 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 = [];
2024-06-10 20:43:34 +00:00
2025-01-07 13:52:08 +00:00
protected function casts(): array
{
return [
'type' => 'string',
'payload' => 'encrypted',
];
}
}