<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class UOM extends Model
{
public $timestamps = false;
protected $table = 'tbl_unit_of_measurement';
protected $fillable = [
'MeasurementName',
'Status',
'Created_by',
'Created_at',
'Updated_by',
'Updated_at',
];
}