lasthourcloud/app/Models/ServiceApplication.php

44 lines
967 B
PHP
Raw Normal View History

2023-09-20 13:42:41 +00:00
<?php
namespace App\Models;
2023-09-27 13:48:19 +00:00
use Illuminate\Database\Eloquent\Casts\Attribute;
2023-09-20 13:42:41 +00:00
use Illuminate\Database\Eloquent\Factories\HasFactory;
2023-09-25 15:41:35 +00:00
use Illuminate\Support\Facades\Cache;
2023-09-20 13:42:41 +00:00
class ServiceApplication extends BaseModel
{
use HasFactory;
protected $guarded = [];
2023-09-22 09:23:49 +00:00
public function type()
{
return 'service';
}
2023-09-22 10:08:51 +00:00
public function service()
{
return $this->belongsTo(Service::class);
}
2023-09-22 09:23:49 +00:00
public function persistentStorages()
{
return $this->morphMany(LocalPersistentVolume::class, 'resource');
}
2023-09-22 19:31:47 +00:00
public function fileStorages()
{
return $this->morphMany(LocalFileVolume::class, 'resource');
}
2023-09-27 13:48:19 +00:00
public function fqdns(): Attribute
{
return Attribute::make(
get: fn () => is_null($this->fqdn)
? []
: explode(',', $this->fqdn),
);
}
public function saveFileVolumes()
{
saveFileVolumesHelper($this);
}
2023-09-20 13:42:41 +00:00
}