added lookup helper functioanlity changed namespace for lookup models Remove Finances Cotnroller Removed jump bridge controller removed models no longer in use
27 lines
466 B
PHP
27 lines
466 B
PHP
<?php
|
|
|
|
namespace App\Models\Lookups;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class CorporationToAlliance extends Model
|
|
{
|
|
//Table Name
|
|
public $table = 'corporation_to_alliance';
|
|
|
|
//Timestamps
|
|
public $timestamps = false;
|
|
|
|
/**
|
|
* The attributes that are mass assignable
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'corporation_id',
|
|
'corporation_name',
|
|
'alliance_id',
|
|
'alliance_name',
|
|
];
|
|
}
|