Files
faveo/app/Model/Manage/Forms.php
2015-05-01 13:13:01 +05:30

14 lines
300 B
PHP

<?php namespace App\Model\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'];
}