App\Models\Forum\ForumCover::getDefaultTopicCoverAttribute PHP 메소드

getDefaultTopicCoverAttribute() 공개 메소드

    public function getDefaultTopicCoverAttribute()
    {
        if ($this->_defaultTopicCover === null) {
            $this->_defaultTopicCover = new ForumDefaultTopicCover($this->id, $this->default_topic_cover_json);
        }
        return $this->_defaultTopicCover;
    }