<?php
namespace AppModels;
use IlluminateDatabaseEloquentModel;
class ForumPostModel extends Model
{
protected $table = 'forum_posts';
protected $fillable = ['author', 'text', 'topic', 'type'];
public function authorInfo()
{
return $this->hasOne('AppModelsUserModel', 'id', 'author');
}
}