2023-03-24 15:47:58 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
class Server extends BaseModel
|
|
|
|
{
|
2023-03-27 14:31:42 +02:00
|
|
|
public function privateKey()
|
2023-03-24 15:47:58 +01:00
|
|
|
{
|
2023-03-27 14:31:42 +02:00
|
|
|
return $this->belongsTo(PrivateKey::class);
|
2023-03-24 15:47:58 +01:00
|
|
|
}
|
|
|
|
}
|