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

29 lines
552 B
PHP

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