Ejemplo n.º 1
0
 public static function declineBanner(Banner $banner)
 {
     $banner->is_active = 0;
     $banner->status = 'declined';
     $banner->save();
     LogMapper::log('banner_decline', $banner->id);
     NotificationMapper::bannerDecline($banner);
     return $banner;
 }