18 lines
336 B
PHP
18 lines
336 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'];
|
|
}
|