lasthourcloud/app/Models/Server.php
Andras Bacsai f57684b024 Add Servers and PrivateKeys
Add new testhost
Remove privatekey injection from Dockerfile
2023-03-24 22:15:36 +01:00

12 lines
184 B
PHP

<?php
namespace App\Models;
class Server extends BaseModel
{
public function privateKeys()
{
return $this->morphToMany(PrivateKey::class, 'private_keyable');
}
}