2019-11-16 10:21:14 +03: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
|
|
|
|
*/
|
2019-11-19 14:06:20 +03:00
|
|
|
protected $fillable = ['company_id', 'name', 'description', 'class', 'group', 'period', 'basis', 'chart'];
|
2019-11-16 10:21:14 +03:00
|
|
|
}
|