This commit is contained in:
Andras Bacsai
2023-05-16 11:02:51 +02:00
parent 57c64d0b86
commit 752c86d8f7
16 changed files with 165 additions and 92 deletions

View File

@@ -13,8 +13,16 @@ class StandaloneDocker extends BaseModel
{
return $this->morphMany(Application::class, 'destination');
}
public function databases()
{
return $this->morphMany(Database::class, 'destination');
}
public function server()
{
return $this->belongsTo(Server::class);
}
public function attachedTo()
{
return $this->applications->count() > 0 || $this->databases->count() > 0;
}
}