Files
faveo/app/Model/helpdesk/Manage/Forms.php
2016-02-19 02:20:12 -05:00

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