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