added models for stock assets from structures

This commit is contained in:
2019-05-26 19:08:43 -05:00
parent 9526c6f9cc
commit 4650ca57fb
6 changed files with 173 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?php
namespace App\Models\Stock;
use Illuminate\Database\Eloquent\Model;
class StructureStock extends Model
{
//Table Name
public $table = '';
//Timestamps
public $tiemestamps = false;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'structure_name',
'structure_id',
'location_flag',
'location_id',
'location_type',
'item_id',
'type_id',
'quantity',
];
}