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

18 lines
319 B
PHP

<?php
namespace App\Model\helpdesk\Form;
use App\BaseModel;
class Fields extends BaseModel
{
protected $table = 'custom_form_fields';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['forms_id', 'label', 'name', 'type', 'value', 'required'];
}