Files
faveo/app/Model/kb/Comment.php
2016-01-25 20:45:35 +05:30

15 lines
293 B
PHP

<?php namespace App\Model\kb;
use Illuminate\Database\Eloquent\Model;
/**
* Define the Model of comment table
* @package default
*/
class Comment extends Model {
protected $table = 'kb_comment';
protected $fillable = ['article_id', 'name', 'email', 'website', 'comment', 'status'];
}