lasthourcloud/app/Models/GitlabApp.php

12 lines
165 B
PHP
Raw Normal View History

2023-03-28 12:09:34 +02:00
<?php
namespace App\Models;
class GitlabApp extends BaseModel
{
public function privateKey()
{
return $this->belongsTo(PrivateKey::class);
}
2023-03-28 12:09:34 +02:00
}