Example #1
0
 public function validate_uniqueForumThread($value, $input, $args)
 {
     return !(bool) ForumThread::where('title', $value)->count();
 }
Example #2
0
 public function countForumPosts()
 {
     return ForumComment::where('author_id', $this->id)->count() + ForumThread::where('author_id', $this->id)->count();
 }