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