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

30 lines
541 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class FinRemarks extends Model
{
const CREATED_AT = 'createdon';
const UPDATED_AT = 'updatedon';
protected $table = 'fin_remarks';
/**
* The attributes that are mass assignable.
*
* @var array
*/
//
protected $fillable = ['entity_id','itemid','remarks','createdby','updatedby'];
protected $hidden = [];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
}