onQueue('high'); } /** * Execute the job. */ public function handle(): void { if (isDev()) { ray('Sending webhook notification', [ 'url' => $this->webhookUrl, 'payload' => $this->payload, ]); } $response = Http::post($this->webhookUrl, $this->payload); if (isDev()) { ray('Webhook response', [ 'status' => $response->status(), 'body' => $response->body(), 'successful' => $response->successful(), ]); } } }