This commit is contained in:
kali
2024-04-05 18:47:38 +03:00
parent 38ec704a03
commit 569c9348ba
10 changed files with 130 additions and 43 deletions

View File

@ -6,10 +6,12 @@ use Illuminate\Database\Eloquent\Model;
class FormResModel extends Model
{
const STATUS_ACTIVE = 1;
const STATUS_ARCHIVE = 2;
protected $table = "form_res";
protected $fillable = [
'form_id', 'data'
'form_id', 'data', 'status'
];
protected $hidden = [