Files
faveo/app/Model/helpdesk/Manage/Forms.php
2016-06-13 20:41:55 +05:30

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