This commit is contained in:
kali
2024-03-29 17:47:46 +03:00
parent 74719c7250
commit 432b2547cf
21 changed files with 494 additions and 200 deletions

View File

@ -0,0 +1,18 @@
<?php
namespace itguild\forms\app\models;
use Illuminate\Database\Eloquent\Model;
class InputValueModel extends Model
{
protected $table = "input_value";
protected $fillable = [
'form_input_id', 'value'
];
protected $hidden = [
];
}