Files
faveo/app/Model/helpdesk/Manage/Forms.php
2015-12-22 14:09:23 +05:30

14 lines
309 B
PHP

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