15 lines
293 B
PHP
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'];
|
|
|
|
}
|