Files
w4rpservices/app/Models/Jobs/JobProcessStructure.php

27 lines
418 B
PHP

<?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',
'corpId',
'page',
'esi',
];
}