15 lines
318 B
PHP
15 lines
318 B
PHP
<?php
|
|
|
|
namespace App\Model\helpdesk\Manage;
|
|
|
|
use App\BaseModel;
|
|
|
|
class Forms extends BaseModel
|
|
{
|
|
protected $table = 'forms';
|
|
/*
|
|
this is a custom Forms created by user himself
|
|
*/
|
|
protected $fillable = ['id', 'title', 'instruction', 'label', 'type', 'visibility', 'variable', 'internal_notes'];
|
|
}
|