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

15 lines
268 B
PHP

<?php
namespace App\Model\kb;
use App\BaseModel;
class Relationship extends BaseModel
{
/* define the table */
protected $table = 'kb_article_relationship';
/* define fillable fields */
protected $fillable = ['id', 'category_id', 'article_id'];
}