예제 #1
0
파일: Validator.php 프로젝트: owency/Owency
 public function validate_uniqueForumThread($value, $input, $args)
 {
     return !(bool) ForumThread::where('title', $value)->count();
 }
예제 #2
0
파일: User.php 프로젝트: owency/Owency
 public function countForumPosts()
 {
     return ForumComment::where('author_id', $this->id)->count() + ForumThread::where('author_id', $this->id)->count();
 }