@extends('layouts.app')
@push('styles')
@endpush
@section('content')
@lang('webhooks::app.requestDetails')
@lang('webhooks::app.requestUrl') |
{{ $log->action }} |
@lang('webhooks::app.requestMethod') |
{{ $log->method }} |
@lang('app.date') |
{{ $log->created_at->timezone($company->timezone)->translatedFormat($company->date_format.' '.$company->time_format) }} |
@lang('webhooks::app.webhookFor') |
{{ $log->webhookSettings?->webhook_for }} |
@lang('webhooks::app.requestHeaders')
@forelse (json_decode($log->headers) as $key => $value)
{{ $key }} |
{{ is_array($value) ? implode(', ', $value) : $value }} |
@empty
@endforelse
@lang('webhooks::app.requestBody')
@lang('webhooks::app.requestFormat'): {{$log->webhookSettings?->request_format}}
{!! $log->raw_content !!}
@lang('webhooks::app.response')
{{ $log->response_code }}
{{ $log->response }}
@endsection