coolify/app/Models/SharedEnvironmentVariable.php

16 lines
242 B
PHP
Raw Normal View History

2024-01-23 17:13:23 +01:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class SharedEnvironmentVariable extends Model
{
protected $guarded = [];
2024-06-10 22:43:34 +02:00
2024-01-23 17:13:23 +01:00
protected $casts = [
'key' => 'string',
'value' => 'encrypted',
];
}