@extends('layouts.popup.large') @section('content')

{{ trans('messages.automation.action.outgoing-webhook') }}

{!! trans('messages.automation.action.outgoing-webhook.desc', [ 'app_name' => Acelle\Model\Setting::get('site_name'), ]) !!}

@php $formId = 'WebhookForm' . uniqid(); @endphp
@csrf @include('helpers.form_control.httpConfig', [ 'httpConfig' => $httpConfig, 'formId' => $formId, 'testUrl' => action('Automation2Controller@outgoingWebhookTest', [ 'uid' => $automation->uid, 'http_config_uid' => $httpConfig->uid, ]), 'tags' => $automation->getAvailableOutgoingWebhookTags(), ])
backspace {{ trans('messages.cancel') }}
@endsection