mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-14 09:01:42 -04:00
20 lines
292 B
PHP
20 lines
292 B
PHP
<?php
|
|
|
|
namespace Modules\FormBuilder\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class CustomForm extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'form_data',
|
|
'status',
|
|
];
|
|
|
|
|
|
}
|