コード例 #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();
 }