24 lines
365 B
PHP
24 lines
365 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class FormQuestion extends Model
|
||
|
|
{
|
||
|
|
protected $table = 'form_questions';
|
||
|
|
|
||
|
|
public $timestamps = false;
|
||
|
|
|
||
|
|
public $incrementing = false;
|
||
|
|
|
||
|
|
protected $keyType = 'string';
|
||
|
|
|
||
|
|
protected $fillable = [
|
||
|
|
'id',
|
||
|
|
'label',
|
||
|
|
'placeholder',
|
||
|
|
'field_type',
|
||
|
|
];
|
||
|
|
}
|