Files
faveo/app/Model/helpdesk/Form/Form_details.php
2016-02-16 22:42:08 +05:30

14 lines
245 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'];
}