Files
faveo/app/Model/helpdesk/Form/Fields.php
2016-02-16 22:42:08 +05:30

19 lines
338 B
PHP

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