akaunting/app/Models/Common/Report.php

19 lines
343 B
PHP
Raw Normal View History

2019-11-16 07:21:14 +00:00
<?php
namespace App\Models\Common;
use App\Abstracts\Model;
class Report extends Model
{
protected $table = 'reports';
/**
* Attributes that should be mass-assignable.
*
* @var array
*/
protected $fillable = ['company_id', 'name', 'description', 'class', 'group', 'period', 'basis', 'chart', 'enabled'];
}