<?php
namespace AppModels;
use IlluminateDatabaseEloquentModel;
class ForumTopicModel extends Model
{
protected $table = 'forum_topics';
protected $fillable = ['name', 'author', 'category', 'status'];
public function categoryInfo()
{
return $this->hasOne('AppModelsForumCategoryModel', 'id', 'category');
}
public function posts()
{
return $this->hasMany('AppModelsForumPostModel', 'topic', 'id');
}
}