lasthourcloud/app/Models/PrivateKey.php

12 lines
154 B
PHP
Raw Normal View History

<?php
namespace App\Models;
class PrivateKey extends BaseModel
{
public function private_key_morph()
{
return $this->morphTo();
}
}