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