forked from miguel456/rbrecruiter
17 lines
193 B
PHP
17 lines
193 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Form extends Model
|
|
{
|
|
public $fillable = [
|
|
|
|
'formName',
|
|
'formStructure',
|
|
'formStatus'
|
|
|
|
];
|
|
}
|