misc_pterodactyl-panel/app/Models/APIKey.php

32 lines
517 B
PHP
Raw Normal View History

2016-01-16 00:26:50 +00:00
<?php
namespace Pterodactyl\Models;
use Illuminate\Database\Eloquent\Model;
class APIKey extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'api_keys';
2016-01-16 06:20:27 +00:00
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = ['secret'];
/**
* Fields that are not mass assignable.
*
* @var array
*/
protected $guarded = ['id', 'created_at', 'updated_at'];
2016-01-16 00:26:50 +00:00
}