@if ($httpRequestLogs->count() > 0)
| {{ trans('messages.created_at') }} | {{ trans('messages.webhook.params') }} | {{ trans('messages.webhook.http_code') }} | {{ trans('messages.webhook.request_details') }} | {{ trans('messages.webhook.reponse_content') }} | {{ trans('messages.webhook.reponse_error') }} |
|---|---|---|---|---|---|
@foreach ($httpRequestLog->httpRequest->getParams() as $key => $value)
{{ $key }}: {{ $value }}
@endforeach
|
{{ $httpRequestLog->response_http_code }}
|
{{ $httpRequestLog->request_details }}
|
{{ $httpRequestLog->response_content }}
|
{{ $httpRequestLog->response_error ?? trans('messages.general.n_a') }}
|