hosp_2025/app/Models/FormQuestion.php

24 lines
365 B
PHP
Raw Normal View History

2025-12-11 15:10:26 -04:00
<?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',
];
}