41 lines
741 B
PHP
41 lines
741 B
PHP
<?php
|
|
|
|
namespace App\Models\Lookup;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class CorporationLookup extends Model
|
|
{
|
|
// Table Name
|
|
protected $table = 'corporation_lookup';
|
|
|
|
//Primary Key
|
|
public $primaryKey = 'corporation_id';
|
|
|
|
// Timestamps
|
|
public $timestamps = false;
|
|
|
|
/**
|
|
* The attributes that are mass assignable
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'corporation_id',
|
|
'alliance_id',
|
|
'ceo_id',
|
|
'creator_id',
|
|
'date_founded',
|
|
'description',
|
|
'faction_id',
|
|
'home_station_id',
|
|
'member_count',
|
|
'name',
|
|
'shares',
|
|
'tax_rate',
|
|
'ticker',
|
|
'url',
|
|
'war_eligible',
|
|
];
|
|
}
|