mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-21 21:44:18 +00:00
23 lines
365 B
PHP
23 lines
365 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Warehousearr extends Model
|
|
{
|
|
protected $fillable = [
|
|
'id',
|
|
'so_id',
|
|
'receive_on',
|
|
'transport_company_name',
|
|
'consignment_note_no',
|
|
'warehouse_receive_note_no',
|
|
'receiving_person',
|
|
'marking_number',
|
|
'image',
|
|
];
|
|
|
|
|
|
}
|