Files
faveo/app/Model/helpdesk/Form/Forms.php
2016-01-25 20:45:35 +05:30

18 lines
264 B
PHP

<?php namespace App\Model\helpdesk\Form;
use Illuminate\Database\Eloquent\Model;
class Forms extends Model {
protected $table = 'custom_forms';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['formname'];
}