mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-23 14:34:02 +00:00
24 lines
405 B
PHP
24 lines
405 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',
|
|
];
|
|
}
|