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