mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-19 12:34:06 +00:00
21 lines
318 B
PHP
21 lines
318 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Decisionitem extends Model
|
|
{
|
|
protected $fillable = [
|
|
'id',
|
|
'decision_id',
|
|
'warehouseitem_id',
|
|
'num_of_item',
|
|
];
|
|
|
|
public function decision()
|
|
{
|
|
return $this->belongsTo('App\Decision');
|
|
}
|
|
}
|