Files
faveo/app/Model/kb/Relationship.php
2015-12-22 14:09:23 +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'];
}