13 lines
197 B
PHP
13 lines
197 B
PHP
<?php namespace App\Model\Form;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Form_details extends Model {
|
|
|
|
protected $table = 'form_details';
|
|
|
|
protected $fillable = ['id','label','type'];
|
|
|
|
|
|
}
|