2024-01-23 16:13:23 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2024-04-15 10:46:22 +00:00
|
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
2024-01-23 16:13:23 +00:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class SharedEnvironmentVariable extends Model
|
|
|
|
{
|
|
|
|
protected $guarded = [];
|
|
|
|
protected $casts = [
|
|
|
|
'key' => 'string',
|
|
|
|
'value' => 'encrypted',
|
|
|
|
];
|
|
|
|
}
|