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