'qr.balance_low', 'household_id' => $this->household->uuid, 'active_count' => $this->activeCount, 'threshold' => $this->threshold, 'message' => "You have {$this->activeCount} QR codes left. Buy more from a partner store.", 'action_label' => 'Buy Codes', 'action_url' => '/stores', ]; } public function toSms(mixed $notifiable): array { return [ 'to' => $notifiable->phone, 'message' => "Verde: Only {$this->activeCount} QR codes left. Buy more at any partner store before you run out.", ]; } public function toPush(mixed $notifiable): array { return [ 'title' => 'QR codes running low', 'body' => "Only {$this->activeCount} codes left. Buy more at a partner store.", 'data' => [ 'type' => 'qr.balance_low', 'household_id' => $this->household->uuid, 'active_count' => $this->activeCount, ], ]; } }