structure jobs

This commit is contained in:
2019-05-27 23:45:21 -05:00
parent 29d5595ec8
commit ab4d13fa14
8 changed files with 283 additions and 17 deletions

View File

@@ -0,0 +1,25 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class JobProcessStructure extends Model
{
//Table Name - Not Needed for a Job
//public $table = null;
//Timestamps
public $timestamps = false;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'charId',
'corporationId',
'structure',
];
}