コード例 #1
0
 /**
  * Handle the event.
  *
  * @param  NotificationWasDeleted $event
  *
  * @return void
  */
 public function handle(NotificationWasDeleted $event)
 {
     $notification = $event->notification;
     $deviceToken = $notification->user->gcm_id;
     $message = 'Sorry but ' . $notification->movie->name . ' was not run on ' . $notification->date->format("l, dS M") . ' by ' . $notification->movie->cinema->name;
     $title = $notification->movie->cinema->name;
     $url = $notification->movie->cinema->url;
     $icon_image = $notification->movie->image;
     $big_image = $notification->movie->cinema->logo;
     $push = GCM::to($deviceToken)->send($message, ['title' => $title, 'url' => $url, 'icon_image' => $icon_image, 'big_image' => $big_image]);
 }
コード例 #2
0
 /**
  * Handle the event.
  *
  * @param  ShowTimesWereRetrieved $event
  *
  * @return void
  */
 public function handle(ShowTimesWereRetrieved $event)
 {
     $pending_notifications = Notification::unsent()->with(['movie', 'user', 'movie.cinema'])->get();
     foreach ($pending_notifications as $notification) {
         if ($notification->hasShowTime()) {
             $deviceToken = $notification->user->gcm_id;
             $message = $notification->movie->name . ' tickets for ' . $notification->date->format("l, dS M") . ' now available at ' . $notification->movie->cinema->name;
             $title = $notification->movie->cinema->name;
             $url = $notification->movie->cinema->url;
             $icon_image = $notification->movie->image;
             $big_image = $notification->movie->cinema->logo;
             $push = GCM::to($deviceToken)->send($message, ['title' => $title, 'url' => $url, 'icon_image' => $icon_image, 'big_image' => $big_image]);
             $notification->sent = true;
             $notification->save();
         }
     }
 }