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,20 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class JobProcessCorpJournal extends Model
{
//No table name is needed
//Timestamps
public $timestamps = false;
protected $fillable = [
'division',
'charId',
'corpId',
'page',
];
}