29 lines
427 B
PHP
29 lines
427 B
PHP
<?php
|
|
|
|
namespace App\Models\Corporation;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AllianceCorp extends Model
|
|
{
|
|
/**
|
|
* Table Name
|
|
*/
|
|
protected $table = 'AllianceCorps';
|
|
|
|
/**
|
|
* Timestamps
|
|
*/
|
|
public $timestamps = true;
|
|
|
|
/**
|
|
* The attributes that are mass assignable
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'corporation_id',
|
|
'name',
|
|
];
|
|
}
|