Files
faveo/app/Model/helpdesk/Form/Forms.php
2016-06-13 20:41:55 +05:30

18 lines
266 B
PHP

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