29 lines
548 B
PHP
29 lines
548 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
class Financials extends Model
|
|
{
|
|
const CREATED_AT = 'createdon';
|
|
const UPDATED_AT = 'updatedon';
|
|
protected $table = 'financials';
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
//
|
|
protected $fillable = ['entity_id','fy','st_type','itemid','value','createdby','updatedby'];
|
|
|
|
protected $hidden = [];
|
|
/**
|
|
* The attributes excluded from the model's JSON form.
|
|
*
|
|
* @var array
|
|
*/
|
|
|
|
|
|
}
|