@extends('layouts.app') @section('title', 'Add New Webhook') @section('content')

Add New Webhook

Create a webhook to receive orders from any platform

@csrf

A friendly name to identify this webhook source

@error('name')

{{ $message }}

@enderror

Select the type of webhook source

@error('type')

{{ $message }}

@enderror

For platforms that support webhook signing (e.g., Stripe webhook secret)

@error('secret_key')

{{ $message }}

@enderror

How it works:

  1. Create this webhook source
  2. Copy the generated webhook URL
  3. Paste it in your payment form or platform's webhook settings
  4. Configure it to send data on payment success
  5. Orders will automatically be created when payments succeed

Supported Platforms:

  • Payment Forms (Tally, Typeform, Google Forms with payment)
  • Payment Gateways (Stripe, PayPal, Razorpay, etc.)
  • E-commerce platforms with webhook support
  • Any service that can send JSON data via POST request
Cancel
@endsection