level) { 'info' => 'ℹ️', 'error' => '❌', 'success' => '✅ ', 'warning' => '⚠️', }; } public function toPayload(string $token, string $user): array { $levelIcon = $this->getLevelIcon(); $payload = [ 'token' => $token, 'user' => $user, 'title' => "{$levelIcon} {$this->title}", 'message' => $this->message, 'html' => 1, ]; foreach ($this->buttons as $button) { $buttonUrl = data_get($button, 'url'); $text = data_get($button, 'text', 'Click here'); if ($buttonUrl && str_contains($buttonUrl, 'http://localhost')) { $buttonUrl = str_replace('http://localhost', config('app.url'), $buttonUrl); } $payload['message'] .= " ".$text.''; } Log::info('Pushover message', $payload); return $payload; } }