lasthourcloud/app/Models/PrivateKey.php

23 lines
402 B
PHP
Raw Normal View History

<?php
namespace App\Models;
2023-06-07 13:08:35 +00:00
class PrivateKey extends BaseModel
{
protected $fillable = [
'name',
'description',
'private_key',
'team_id',
];
2023-06-07 13:08:35 +00:00
static public function ownedByCurrentTeam()
{
return PrivateKey::whereTeamId(session('currentTeam')->id);
}
public function servers()
{
2023-03-27 12:31:42 +00:00
return $this->hasMany(Server::class);
}
}