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