Files
w4rpservices/app/Models/Finances/CorpMarketStructure.php
2019-07-24 01:51:32 -05:00

27 lines
427 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class CorpMarketStructure extends Model
{
//Table Name
public $table = 'corp_market_structures';
//Timestamps
public $timestamps = true;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'character_id',
'corporation_id',
'tax',
'ratio',
];
}