@extends('layouts.popup.large') @section('title') {{ trans('messages.webhooks') }} @endsection @section('content')

{{ trans('messages.webhooks.wording') }}

@foreach($campaign->campaignWebhooks()->open()->get() as $webhook) @endforeach
{{ trans('messages.webhook.type') }} {{ trans('messages.webhook.description') }}
{{ trans('messages.webhook.type.' . $webhook->type . '.short') }}

{{ trans('messages.webhook.type.' . $webhook->type . '.desc') }}

@if ($webhook->type == 'click')

ads_click {{ $webhook->campaignLink->url }}

@endif

gps_fixed {{ $webhook->endpoint }}

play_arrow {{ trans('messages.webhook.test') }}
@endsection