mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-20 04:54:02 +00:00
28 lines
462 B
PHP
28 lines
462 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Soitem extends Model
|
|
{
|
|
protected $fillable = [
|
|
'id',
|
|
'order_id',
|
|
'brand_no',
|
|
'model_no',
|
|
'item_code',
|
|
'quantity_of_item',
|
|
'uom',
|
|
'quantity_of_carton',
|
|
'packaging_type',
|
|
'packaging_height',
|
|
'packaging_width',
|
|
'packaging_depth',
|
|
'packaging_gross',
|
|
'packaging_nett',
|
|
|
|
];
|
|
|
|
}
|