Esempio n. 1
0
 public static function activeTwitcherCount(User $user, $bannerType = 0)
 {
     $banners = Banner::whereTwitcherId($user->id)->whereIsActive(1);
     if ($bannerType > 0) {
         $banners->whereTypeId($bannerType);
     }
     return $banners->count();
 }