13 lines
273 B
PHP
13 lines
273 B
PHP
<?php namespace App\Model\kb;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Relationship extends Model {
|
|
|
|
/* define the table */
|
|
protected $table = 'kb_article_relationship';
|
|
/* define fillable fields */
|
|
protected $fillable = ['id', 'category_id', 'article_id'];
|
|
|
|
}
|