akaunting/app/Models/Common/Report.php
2019-11-19 14:06:20 +03:00

19 lines
332 B
PHP

<?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'];
}