29 lines
576 B
PHP
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
|
|
*/
|
|
|
|
|
|
}
|