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