Files
faveo/app/Model/kb/Comment.php
2016-02-19 02:20:12 -05:00

15 lines
279 B
PHP

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