16 lines
371 B
PHP
16 lines
371 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Knowledgebase extends Model
|
|
{
|
|
protected $table = 'knowledgebases';
|
|
protected $fillable = ['title','status','topic_id','content','views','lang','slug','meta_tags','meta_description'];
|
|
|
|
public function topic(){
|
|
return $this->hasOne('App\KnowledgebaseTopic','id','topic_id');
|
|
}
|
|
}
|