I run a Laravel 10 Xtora-based top-up site that sells Mobile Legends diamonds. I want to take the manual work out of the entire purchase flow, from payment confirmation to diamond delivery. What needs to happen 1. The moment a customer completes a transfer to my BOB Bank account, the system should detect the transaction through the bank’s API (or any webhook the bank exposes) and instantly mark the related order as paid. I am not yet sure whether BOB provides full documentation, so you may need to help me confirm their capabilities and handle authentication, polling, or webhook endpoints accordingly. 2. As soon as an order is paid, the site must call UniPin’s supplier API to deliver the correct diamond package to the player’s UID, then update the order status in Laravel with UniPin’s real-time response. 3. All of this has to run unattended, logging each step and gracefully retrying if either API times out. Core deliverables • BOB Bank payment listener/service integrated with my existing orders table • UniPin API client with automatic retries and status syncing • End-to-end automated workflow wired into my current checkout so that a successful bank transfer ends with an in-game delivery confirmation • Clear configuration files, .env keys, and concise setup notes so I can deploy the same logic in staging and production • A short report or screencast proving the flow works (test order paid → diamonds arrive) Acceptance criteria • Payment detection fires within 60 seconds of the transfer appearing in the bank. • 100 % of paid orders are pushed to UniPin without manual intervention. • Failed API calls are retried at least three times and surfaced in a log channel I can review. • No existing Xtora functionality is broken; PHPUnit tests (or similar) continue to pass. Tech focus Laravel 10, PHP 8.x, MySQL, RESTful APIs, webhooks, optional fallback via e-mail/SMS parsing if the bank offers no official API. Please include links or screenshots of previous Laravel payment or supplier integrations you have built so I can gauge code quality and approach.