/**
  * Handle Job.
  */
 public function handle()
 {
     $notification = new Notification();
     $notification->balance_id = $this->balance->id;
     $this->card->notifications()->save($notification);
     $this->sendNotificationPush($notification, $this->card, $this->balance);
 }