Socieboy\Forum\Entities\BaseModel::__construct PHP Method

__construct() public method

Set table prefix if any
public __construct ( )
    public function __construct()
    {
        $this->table = (Config::get('forum.database.prefix') ? Config::get('forum.database.prefix') . '_' : '') . $this->table;
    }
BaseModel