14 lines
300 B
PHP
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'];
|
|
|
|
}
|