Files
faveo/code/app/Model/kb/Relationship.php
2015-11-30 16:38:59 +05:30

13 lines
270 B
PHP

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