Add api stuff

This commit is contained in:
Russ Long
2019-10-29 15:22:32 -04:00
parent 0f9d04c7e3
commit 9bd968f2d9
16 changed files with 1179 additions and 1 deletions

View File

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