grab = new Grab(); } public function webhook() { $rawBody = file_get_contents('php://input'); $data = json_decode($rawBody, true); if ($data) { $this->grab->handleWebhook($data); } return $this->respond([ 'status' => 200, 'message' => 'Webhook received' ]); } }