Files
w4rpservices/app/Models/Esi/EsiScope.php
2019-06-21 03:11:27 -05:00

29 lines
505 B
PHP

<?php
namespace App\Models\Esi;
use Illuminate\Database\Eloquent\Model;
class EsiScope extends Model
{
// Table Name
protected $table = 'EsiScopes';
// Timestamps
public $timestamps = true;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'character_id',
'scope',
];
public function user() {
return $this->belongsTo('App\Models\User\User', 'character_id', 'character_id');
}
}