Files
faveo/app/Model/helpdesk/Form/Form_details.php
2016-02-19 02:20:12 -05:00

13 lines
243 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'];
}