smc_cet_fin_backend/app/Models/ENTITIES.PHP
2021-07-19 15:54:12 +05:30

29 lines
576 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Entities extends Model
{
const CREATED_AT = 'createdon';
const UPDATED_AT = 'updatedon';
protected $table = 'entities';
/**
* The attributes that are mass assignable.
*
* @var array
*/
//
protected $fillable = ['losid','pan','cin','bizname','entity_type','activity_group','biz_act_desc','createdby','updatedby'];
protected $hidden = [];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
}