@component('mailcoach::mails.layout.message')
{{ __mc('Your webhook has been disabled') }}
{{ __mc('Your webhook configuration **:name** to **:url** has been disabled.', [
'name' => $webhookConfiguration->name,
'url' => $webhookConfiguration->url,
]) }}
{{ __mc('It was attempted **:times** times.', [
'times' => config('mailcoach.webhooks.maximum_attempts', 5)
]) }}
@if($log = $webhookConfiguration->logs()->first())
{{ __mc('Below you can find the response of the latest log:') }}
{{ json_encode($log->response, JSON_PRETTY_PRINT) }}
@endif
@endcomponent