structure market tax

This commit is contained in:
2019-07-24 01:51:32 -05:00
parent 00424b2384
commit 15e8d7fb6c
15 changed files with 610 additions and 95 deletions

View File

@@ -0,0 +1,26 @@
<?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',
];
}