mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-21 13:34:16 +00:00
29 lines
506 B
PHP
29 lines
506 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Warehouseitem extends Model
|
|
{
|
|
protected $fillable = [
|
|
'id',
|
|
'description',
|
|
'nominal_ctn',
|
|
'actual_ctn',
|
|
'nominal_measurement',
|
|
'actual_measurement',
|
|
'nominal_weight',
|
|
'actual_weight',
|
|
'balance',
|
|
'isDamaged',
|
|
'status',
|
|
'image',
|
|
];
|
|
|
|
public function warehousearr()
|
|
{
|
|
return $this->belongsTo('App\Warehousearr');
|
|
}
|
|
}
|