2023-03-24 15:47:58 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
class Server extends BaseModel
|
|
|
|
{
|
2023-03-24 22:15:36 +01:00
|
|
|
public function privateKeys()
|
2023-03-24 15:47:58 +01:00
|
|
|
{
|
2023-03-24 22:15:36 +01:00
|
|
|
return $this->morphToMany(PrivateKey::class, 'private_keyable');
|
2023-03-24 15:47:58 +01:00
|
|
|
}
|
|
|
|
}
|