Files
faveo/app/Model/kb/Comment.php
2016-06-13 20:41:55 +05:30

16 lines
302 B
PHP

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