FluxBB\Models\Post::topic PHP Method

topic() public method

public topic ( )
    public function topic()
    {
        return $this->belongsTo('FluxBB\\Models\\Topic');
    }

Usage Example

Beispiel #1
0
 public function addReply(Post $post)
 {
     $post->topic()->associate($this);
     $this->lastPost()->associate($post);
     $this->forum->lastPost()->associate($post);
 }