ansible-api/app/Models/ApiKeyAdminEvent.php
2019-10-29 15:22:32 -04:00

21 lines
433 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class ApiKeyAdminEvent extends Model
{
protected $table = 'api_key_admin_events';
/**
* Get the related ApiKey record
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function apiKey()
{
return $this->belongsTo(ApiKey::class, 'api_key_id');
}
}