@extends('layouts.app') @section('site_title', formatTitle([__('Webhooks'), __('Settings'), config('settings.title')])) @section('content')
@include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('admin.dashboard'), 'title' => __('Admin')], ['title' => __('Settings')], ]])

{{ __('Webhooks') }}

{{ __('Webhooks') }}
@include('shared.message')
{{ __('Webhooks can be used to automatically notify external systems when certain events occur.') }}
{!! __('This key will be included in the :header header of each webhook request, using the :scheme scheme.', ['header' => 'Authorization', 'scheme' => 'Bearer']) !!} {{ __('You can use it to verify the authenticity of the request source.') }}
@csrf
@if ($errors->has('webhook_user_created')) {{ $errors->first('webhook_user_created') }} @endif {!! __(':fields fields are being sent when a user is created.', ['fields' => '' . implode(', ', ['id', 'name', 'email', 'email_verified_at', 'locale', 'timezone', 'action']) . '']) !!}
@if ($errors->has('webhook_user_updated')) {{ $errors->first('webhook_user_updated') }} @endif {!! __(':fields fields are being sent when a user is updated.', ['fields' => '' . implode(', ', ['id', 'name', 'email', 'email_verified_at', 'locale', 'timezone', 'action']) . '']) !!}
@if ($errors->has('webhook_user_deleted')) {{ $errors->first('webhook_user_deleted') }} @endif {!! __(':fields fields are being sent when a user is deleted.', ['fields' => '' . implode(', ', ['id', 'name', 'email', 'email_verified_at', 'locale', 'timezone', 'action']) . '']) !!}
@if ($errors->has('webhook_payment_created')) {{ $errors->first('webhook_payment_created') }} @endif {!! __(':fields fields are being sent when a payment is created.', ['fields' => '' . implode(', ', ['id', 'user_id', 'plan_id', 'payment_id', 'invoice_id', 'processor', 'amount', 'currency', 'interval', 'status', 'product', 'coupon', 'tax_rates', 'seller', 'customer', 'created_at', 'updated_at', 'action']) . '']) !!}
@if ($errors->has('webhook_payment_updated')) {{ $errors->first('webhook_payment_updated') }} @endif {!! __(':fields fields are being sent when a payment is updated.', ['fields' => '' . implode(', ', ['id', 'user_id', 'plan_id', 'payment_id', 'invoice_id', 'processor', 'amount', 'currency', 'interval', 'status', 'product', 'coupon', 'tax_rates', 'seller', 'customer', 'created_at', 'updated_at', 'action']) . '']) !!}
@endsection @include('shared.sidebars.admin')