v2 first commit
This commit is contained in:
18
app/Models/Common/Report.php
Normal file
18
app/Models/Common/Report.php
Normal file
@ -0,0 +1,18 @@
|
||||
<?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'];
|
||||
}
|
Reference in New Issue
Block a user