Files
faveo/app/Model/helpdesk/Form/Form_details.php
2015-12-22 14:09:23 +05:30

14 lines
237 B
PHP

<?php namespace App\Model\helpdesk\Form;
use Illuminate\Database\Eloquent\Model;
class Form_details extends Model {
public $timestamps = false;
protected $table = 'form_details';
protected $fillable = ['id', 'label', 'type'];
}